summaryrefslogtreecommitdiffstats
path: root/arch/mips/mm
Commit message (Collapse)AuthorAgeFilesLines
* Merge with Linux 2.3.21.Ralf Baechle1999-12-042-5/+3
|
* Move various headers into a SGI specific subdirectory. These filesRalf Baechle1999-10-211-4/+1
| | | | | need to be at the same place for MIPS32 and MIPS64. Make the semaphore code actually compile.
* o R3000 fixesHarald Koerfgen1999-10-121-2/+2
| | | | | o moved to original 2.3.19 NCR53C9x driver o CONFIG_ULTRIX_PARTION is working again and now big endian proof
* Merge with 2.3.19.Ralf Baechle1999-10-098-50/+42
|
* Merge with 2.3.10.Ralf Baechle1999-09-282-12/+24
|
* o made CVS compile again for R5000Harald Koerfgen1999-09-182-3/+13
| | | | | | o dz fixes by David Airlie o small zs fix (init is fast again) o #ifdef in softirq.h fixed
* Look ma - a tank has hit the MIPS sources ...Ralf Baechle1999-08-211-42/+5
|
* More MIPS64 chainsawing.Ralf Baechle1999-08-202-3/+3
|
* - Drop support for 32/32 fp register modelRalf Baechle1999-08-181-2/+28
| | | | | | | | | | | - Fix siginfo structure definition - Ptrace fixes, one of them was an uninitialized pointer. - Header file fixes. - Fixes to linker scripts required for new binutils. - MIPS64. Chainsaw edition. Btw, Harald, why does the kernel no longer compile ...
* My proposal for non-generic kernels:Harald Koerfgen1999-08-099-207/+85
| | | | | | | | | o only code for the configured CPU is compiled and linked (saves ~100k for R3000 kernels!) o removed a lot of indirect function calls o removed Ralf's "cowboy patch" o added sanity check for DECstations (print warning if the kernel is configured for the wrong CPU)
* The remaining R3000 changes. From now on the CVS will be R3000 aware. R3000 ↵Harald Koerfgen1999-07-261-10/+3
| | | | Indigo anyone? :-)
* Merge with Linux 2.3.9.Ralf Baechle1999-07-051-3/+2
|
* Merge with Linux 2.3.7.Ralf Baechle1999-06-221-8/+8
| | | | | | WARNING: 2.3.7 is known to eat filesystems for breakfast and little children for lunch, so if you try this on your machine make backups first ...
* Merge with Linux 2.3.6. Sorry, this isn't tested on silicon, I don'tRalf Baechle1999-06-172-2/+11
| | | | have a MIPS box at hand.
* Merge with Linux 2.2.8.Ralf Baechle1999-06-131-2/+2
|
* Spelling fixes from Alan Cox.Ralf Baechle1999-05-011-2/+2
|
* Various changes to Makefiles and Config.in files to be able to make use of ↵Harald Koerfgen1999-05-011-0/+4
| | | | the new DECstation and Baget stuff :-)
* R3000 changes which don't affect common codeHarald Koerfgen1999-04-112-35/+469
|
* added call to free prom memoryThomas Bogendoerfer1999-02-251-5/+4
|
* Merge with Linux 2.2.1.Ralf Baechle1999-02-151-2/+5
|
* Merge with Linux 2.1.131 and more MIPS goodies.Ralf Baechle1999-01-047-113/+76
| | | | (Did I mention that CVS is buggy ...)
* o Make it work on CPUs with 128 byte cachelines.Ralf Baechle1998-10-141-286/+355
| | | | | | | | | o Implement handlers for VCEI / VCED exceptions. Install them only on SC / MC versions of the R4000 and R4400 which saves us four instructions per exception on other CPUs. o Print the number of VCED / VCEI exceptions in /proc/cpuinfo, iff available. o Many performance fixes for the SC / MC versions of R4000 and R4400.
* - Merge with Linux 2.1.121.Ralf Baechle1998-09-192-4/+3
| | | | - Bugfixes.
* Add missing break. Fix from Ulf Carlsson.Ralf Baechle1998-09-041-1/+2
|
* o Merge with Linux 2.1.116.Ralf Baechle1998-08-255-41/+102
| | | | | o New Newport console code. o New G364 console code.
* o Merge with Linux 2.1.100.Ralf Baechle1998-06-302-15/+138
| | | | | | | | | | | | | | | | | | o Cleanup the machine dependencies of floppy and rtc. The driver for the Dallas thingy in the Indy is still missing. o Handle allocation of zero'd pages correct for R4000SC / R4400SC. o Page colouring shit to match the virtual and physical colour of all mapped pages. This tends to produce extreme fragmentation problems, so it's deactivated for now. Users of R4000SC / R4400SC may re-enable the code in arch/mips/mm/init.c by removing the definition of CONF_GIVE_A_SHIT_ABOUT_COLOURS. Should get them somewhat further - but don't shake to hard ... o Fixed ptrace(2)-ing of syscalls, strace is now working again. o Fix the interrupt forwarding from the keyboard driver to the psaux driver, PS/2 mice are now working on the Indy. The fix is somewhat broken as it prevents generic kernels for Indy and machines which handle things different. o Things I can't remember.
* o New memset. Fastest in town for size > 6 bytes.Ralf Baechle1998-05-044-10/+10
| | | | | | | | | | | | | | | | | | | | | | | o New clear_user. o Memcpy now efficiently copies the (src^dest)&3 != 0. o Memmove new correctly deals with overlaps o Rewrite csum_partial in assembler. o Rewrte csum_partial_from_user in assembler. o __copy_user is now integrated with memcpy. o get_user now returns a zero value on error. o copy_from_user now clears the destination buffer on error. o strncpy_user now has a more efficient caller routine. o strlen_user now has a more efficient caller routines and is faster. o The unaligned handler is now much cleaner. It's now also save from interrupt. Some more esotheric bugs fixed as well. o Don't export bcopy anymore, it's now a inline function. o Delete ancient junk from the first days of Linux/MIPS. o Delete dead code in indy_sc.c. o Including the IDE driver doesn't crash an Indy anymore. o Eleminate active_ds. We now use current_ds directly in the thread structure which is faster and threadsafe. Saves almost 2kb on the kernel. o Serial console should work again.
* Remove duplicate r4k_{clear,copy}_page entries.Mike Shaver1998-04-231-81/+1
|
* o Merge with Linux 2.1.91.Ralf Baechle1998-04-057-54/+221
| | | | | | | | | o First round of bugfixes for the SC/MC CPUs. o FPU context switch fixes. o Lazy context switches. o Faster syscalls. o Removed dead code. o Shitloads of other things I forgot ...
* o Fix handling of interrupted syscalls.Ralf Baechle1998-03-227-58/+53
| | | | | | | | | | | | o Just count missed heartbeats on Indys but don't print a messages. This was a bug by itself. o Fix a crash in exit_mmap(). o Fix scanmem(). o Fix clear_active_bh(), a ~ was missing causing weak performance. o Remove experimental cache instructions from stackframe.h. It wasn't improving performance as I was hoping. o Shrink the size of the exception handler routines in uaccess.h. o Cleanup, remove dead code in various files.
* o Merge with Linux 2.1.90.Ralf Baechle1998-03-181-3/+3
| | | | | o Divide L1 cache sizes by 1024 before printing, makes the numbers a bit more credible ...
* Look Ma' what I found on my harddisk ...Ralf Baechle1998-03-172-0/+4
| | | | | | | o New faster syscalls for 2.1.x, too o Upgrade to 2.1.89. Don't try to run this. It's flaky as hell. But feel free to debug ...
* Cache fixes, part #1.Ralf Baechle1998-03-032-320/+114
|
* Merge with Linux 2.1.72, part 1.Ralf Baechle1997-12-163-46/+47
|
* Make the thing compile.Ralf Baechle1997-12-021-2/+33
|
* Part #2 merging back my changes ...Ralf Baechle1997-12-012-53/+270
|
* - Set caching mode for KSEG0 to cached-noncoherent for all machines.Ralf Baechle1997-09-121-9/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | On some MIPS boxes the firmware doesn't do that for us. - We still had two unprotected loads in the sys_sigrestore(2). Use __get_user(). - Handle QED-style L1 caches != 16kb per cache correctly. - Protect the cacheflush instructions for the signal trampoline just like the loads in __get_user(). Otherwise the following code will result in a nice "Can not handle kernel paging request" message: #include <signal.h> static void hurz(void) { } main() { signal(SIGSEGV, hurz); /* Chainsaw the stack pointer ... */ asm("move $29,%0" : :"r"(0x70000000)); *(int *) 8 = 0; } With the fix applied I still get the error message. The cause of this problem is that gas produces an __ex_table section with wrong contents. Oh well, how good that I have a nice working post 2.8.1 binutils version at home in good ol' Germany ...
* Merge with Linux 2.1.55. More bugfixes and goodies from my privateRalf Baechle1997-09-122-34/+43
| | | | CVS archive.
* Merge to 2.1.38.Miguel de Icaza1997-08-061-2/+2
| | | | | | | | | | | IMPORTANT NOTE: I could not figure out what information is the one that should be used for the following files (ie, those that were in our tree, or those that came from Linus' patch), please, check these: include/asm-mips/jazz.h include/asm-mips/jazzdma.h include/asm-mips/ioctls.h
* Changes required to share a piece of memory between kernel inMiguel de Icaza1997-07-311-4/+118
| | | | | | | interrupt-land and a user application. Vmalloc is now an inline function that calls vmalloc_prot with the original protection bits used in vmalloc.
* added add_wired_entry(); at the moment it's only implemented in r4xx0.cThomas Bogendoerfer1997-07-296-8/+79
|
* Merge with 2.1.47. Some more cleanup and module fixes.Ralf Baechle1997-07-291-1/+2
|
* Sync with Linux 2.1.46.Ralf Baechle1997-07-202-12/+12
|
* Oopsie. Forgot to commit this one.Miguel de Icaza1997-07-161-0/+102
|
* o Implement /dev/graphics virtualizable access toMiguel de Icaza1997-07-161-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | registers. The actual context switch code is not yet there. But the rest of the magic (mapping/unmapping the registers on demand is already in). o Interface for allowing binary-only console modules added. o My RRM bits, nothing really interesting now. For now, I am assuming in the code that there will be a minor per real graphics device, and that the X server will go and open /dev/graphicsN instead of opening /dev/graphics and using the gfx_attach_board->board variable. The interface the X server uses is not clear. I believe it will be pretty easy to provide the stripped down shmiq interface. Not only that, but we can even provide the same ABI (yes, ABI) for SGI shmiq input modules (yep, looks pretty easy once you have an strace that shows this information). Now, the only thing missing is figuring what is wrong my current conception of the use of shmiq. I just can't get it.
* Minor optimization, use save_and_cli() instead of save_flags();Ralf Baechle1997-07-012-61/+64
| | | | | | | cli(); sequences. Fix a hole of some cycles when enabling the SCACHE on a Indy where an interrupt might have fried us.
* Use the right cacheop for flushing a page from the datacache. HandleRalf Baechle1997-06-251-2/+139
| | | | bug #18 of the R4600 V1.7.
* Add comment about handling of c0_pagemask in Linux and a R4600 1.7 bug.Ralf Baechle1997-06-071-0/+8
|
* Initial revisionRalf Baechle1997-06-014-60/+11
|
* Import of Linux/MIPS 2.1.36Ralf Baechle1997-04-2911-79/+112
|