summaryrefslogtreecommitdiff
path: root/sys/arch/powerpc/include
AgeCommit message (Collapse)Author
2001-08-15Same fix as for mvmeppc needed there, forgot this one.Miod Vallat
2001-08-12vm_inherit.h no moreMichael Shalayeff
2001-08-12Fix build after breakage.Dale Rahn
> vm/vm_prot.h no more
2001-08-01make this compile. ok drahnPeter Valchev
2001-07-30Change:Artur Grabowski
int bus_dmamem_mmap(bus_dma_tag_t, bus_dma_segment_t, int, int, int, int); to: paddr_t bus_dmamem_mmap(bus_dma_tag_t, bus_dma_segment_t, int, int, off_t, int); To allow mmaping offsets larger than INT_MAX. And to simply make more sense.
2001-07-18fxp and de are fixed, enable vtophysMichael Shalayeff
2001-07-18Fix prototype that art missed...Dale Rahn
2001-07-18Get rid of the PMAP_NEW option by making it mandatory for all archs.Artur Grabowski
The archs that didn't have a proper PMAP_NEW now have a dummy implementation with wrappers around the old functions.
2001-07-10Until fxp and if_de are fixed with the correct parameter to vtophys()Dale Rahn
this function cannot be prototyped.
2001-07-09looking at other archs vtophys lives thereMichael Shalayeff
2001-07-09more spacees, includes, protosMichael Shalayeff
2001-07-09protos, includes, spacesMichael Shalayeff
2001-07-09lots of parens, protosMichael Shalayeff
2001-07-08empty arg list is named void for convinience, i supposeMichael Shalayeff
2001-07-06change MSIZE to 256, okay @deraadtNiels Provos
2001-07-04$OpenBSD$Niklas Hallqvist
2001-07-01Properly identify the PBG4 keyboard, US keyboard at least.Dale Rahn
2001-06-29Add kbd info for iBook. -mojMats O Jansson
2001-06-29header file include/define cleanup. commit N of many.Dale Rahn
2001-06-27MNN is no longer an option.Artur Grabowski
2001-06-26Cleanup of interrupt configuration, move prototypes to header file,Dale Rahn
not in each file.
2001-06-26stub bus_space_{alloc,free}Michael Shalayeff
2001-06-25implement bus_space_set_multi_*, based on netbsd code; drahn@ okMichael Shalayeff
2001-06-25config interfaces defines.Dale Rahn
2001-06-24Add prototypes for softnet, ofrootfound.Dale Rahn
Code cleanup for pmap headers.
2001-06-24Define splvm() for arches who don't already provide it, with the sameMiod Vallat
definition as splimp(). art@ ok
2001-06-24Header file to specify to loadfile what types of exe files to support.Dale Rahn
2001-06-24Prototype functions used in macros in this header file.Dale Rahn
2001-06-24Add prototype for ofwconprobe().Dale Rahn
2001-06-24fpu function prototypes;Dale Rahn
2001-06-24include prototype for calc_delayconst()Dale Rahn
2001-06-24Unused variable, poof.Dale Rahn
2001-06-24More inlined function cleanup for -W strictness.Dale Rahn
2001-06-24More inline function clean for -W flags strictness.Dale Rahn
2001-06-24More inline function cleanup for stricter -W flags.Dale Rahn
2001-06-24inlined function definition clean, in preparation of more strict -W warningDale Rahn
flags.
2001-06-23Header file changes to support symbol loading just added.Dale Rahn
2001-06-10Hack/workaround for gcc bug. GCC will generate a load/store double instructionDale Rahn
to do data copies, however it will not correctly identify that a load/store double will not correctly copy data where the address is misaligned. This emulates the load/store double operations in the kernel. Fixes gtk+ runtime problems. From NetBSD.
2001-06-10Post pmap_extract() changes cleanup.Dale Rahn
bus_addr_t vs vaddr_t/paddr_t Return correct value for poalloc();
2001-05-26Add one more '0' in comment.Artur Grabowski
2001-05-25Implement PMAP_MAP_POOLPAGE.Artur Grabowski
2001-05-09More sync to NetBSD.Artur Grabowski
- Change pmap_change_wiring to pmap_unwire because it's only called that way. - Remove pmap_pageable because it's seldom implemented and when it is, it's either almost useless or incorrect. The same information is already passed to the pmap anyway by pmap_enter and pmap_unwire.
2001-05-05Get rid of CLSIZE and all related stuff.Artur Grabowski
CLSIZE -> 1 CLBYTES -> PAGE_SIZE OLOFSET -> PAGE_MASK etc. At the same time some archs needed some cleaning in vmparam.h so that goes in at the same time.
2001-03-29Add OpenBSD tag to headers missing them.Dale Rahn
2001-03-29bus_space_*_raw_multi_* is supposed to take u_int8_t parameter, notDale Rahn
access size parameter. Also add field to hold bus size for later usage.
2001-03-29Make several global variables referenced as extern, not common.Dale Rahn
Cleans up symbols in object files.
2001-03-29Update to newer version from Nbsd. Add OpenBSD tag.Dale Rahn
2001-03-21__va_list is specified differently with the powerpc ABI than it is onDale Rahn
other platforms, the list is a pointer, thus va_copy should allocate data (using alloca) for that pointer before copying the contents of the data. This allows several gnu programs to build and run correctly which insist on multiply parsing the vararg/stdarg data passed to a function.
2001-03-14Support shared disks with MacOS. This is only one of the pieces ofDale Rahn
the task. The kernel now support a BSD disklabel located inside a HFS(DPME) partition of type "OpenBSD". It will use this disklabel for OpenBSD. If no OpenBSD DPME partition exists it will fake HFS partitions for apple HFS partitions of the disk. The tool to change the DPME partition type to OpenBSD and booting support in ofwboot are not yet ready.
2001-03-02add #define __STRICT_ALIGNMENTJason Wright