Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
c-andes.c
Package: linux-2.4.20.tar.gz [view]
Upload User: jlfgdled
Upload Date: 2013-04-10
Package Size: 33168k
Code Size: 3k
Category:
Linux-Unix program
Development Platform:
Unix_Linux
- /*
- * This file is subject to the terms and conditions of the GNU General Public
- * License. See the file "COPYING" in the main directory of this archive
- * for more details.
- *
- * Copyright (C) 1997, 1998, 1999 Ralf Baechle (ralf@gnu.org)
- * Copyright (C) 1999 Silicon Graphics, Inc.
- * Copyright (C) 2000 Kanoj Sarcar (kanoj@sgi.com)
- */
- #include <linux/init.h>
- #include <linux/kernel.h>
- #include <linux/sched.h>
- #include <linux/mm.h>
- #include <asm/page.h>
- #include <asm/pgtable.h>
- #include <asm/r10kcache.h>
- #include <asm/system.h>
- #include <asm/sgialib.h>
- #include <asm/mmu_context.h>
- static int scache_lsz64;
- static void andes_flush_cache_all(void)
- {
- }
- static void andes_flush_cache_mm(struct mm_struct *mm)
- {
- }
- static void andes_flush_cache_range(struct mm_struct *mm, unsigned long start,
- unsigned long end)
- {
- }
- static void andes_flush_cache_page(struct vm_area_struct *vma,
- unsigned long page)
- {
- }
- static void andes_flush_page_to_ram(struct page *page)
- {
- }
- /* Cache operations. These are only used with the virtual memory system,
- not for non-coherent I/O so it's ok to ignore the secondary caches. */
- static void
- andes_flush_cache_l1(void)
- {
- blast_dcache32(); blast_icache64();
- }
- /*
- * This is only used during initialization time. vmalloc() also calls
- * this, but that will be changed pretty soon.
- */
- static void
- andes_flush_cache_l2(void)
- {
- switch (sc_lsize()) {
- case 64:
- blast_scache64();
- break;
- case 128:
- blast_scache128();
- break;
- default:
- printk("Unknown L2 line sizen");
- while(1);
- }
- }
- static void andes___flush_cache_all(void)
- {
- andes_flush_cache_l1();
- andes_flush_cache_l2();
- }
- void
- andes_flush_icache_page(unsigned long page)
- {
- if (scache_lsz64)
- blast_scache64_page(page);
- else
- blast_scache128_page(page);
- }
- static void
- andes_flush_cache_sigtramp(unsigned long addr)
- {
- protected_writeback_dcache_line(addr & ~(dc_lsize - 1));
- protected_flush_icache_line(addr & ~(ic_lsize - 1));
- }
- void __init ld_mmu_andes(void)
- {
- printk("Primary instruction cache %dkb, linesize %d bytesn",
- icache_size >> 10, ic_lsize);
- printk("Primary data cache %dkb, linesize %d bytesn",
- dcache_size >> 10, dc_lsize);
- printk("Secondary cache sized at %ldK, linesize %ldn",
- scache_size() >> 10, sc_lsize());
- _clear_page = andes_clear_page;
- _copy_page = andes_copy_page;
- _flush_cache_all = andes_flush_cache_all;
- ___flush_cache_all = andes___flush_cache_all;
- _flush_cache_mm = andes_flush_cache_mm;
- _flush_cache_page = andes_flush_cache_page;
- _flush_page_to_ram = andes_flush_page_to_ram;
- _flush_cache_l1 = andes_flush_cache_l1;
- _flush_cache_l2 = andes_flush_cache_l2;
- _flush_cache_sigtramp = andes_flush_cache_sigtramp;
- switch (sc_lsize()) {
- case 64:
- scache_lsz64 = 1;
- break;
- case 128:
- scache_lsz64 = 0;
- break;
- default:
- printk("Unknown L2 line sizen");
- while(1);
- }
- flush_cache_l1();
- }