summaryrefslogtreecommitdiff
path: root/sys/arch/powerpc
AgeCommit message (Collapse)Author
2001-05-26Add one more '0' in comment.Artur Grabowski
2001-05-25Implement PMAP_MAP_POOLPAGE.Artur Grabowski
2001-05-25Fix color table initialization for powerpc with wscons.Dale Rahn
Without this fix some systems could come up black on black.
2001-05-21Name the PowerPC G4 processors better. Do not perform the cache controlDale Rahn
on the 7450 until docs have been reviewed and it has been tested.
2001-05-17convert mbuf and cluster allocation to pool, mostly from NetBSDNiels Provos
okay art@ miod@
2001-05-17It's Daylight Saving Time, not Savings. Fix comments.Peter Valchev
Discussed with pjanzen@
2001-05-11unify rd(4) even moreTheo de Raadt
2001-05-11unifyTheo de Raadt
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-07Fix fallout from recent trunc_page() changes.Dale Rahn
problem and fix pointed out by dhartmei, variable name changed to make slightly easier to read.
2001-05-05Rename configure() to cpu_configure().Artur Grabowski
Move it from cpu_startup() to main().
2001-05-05Remove the (vaddr_t) casts inside the round_page and trunc_page macros.Artur Grabowski
We might want to use them on types that are bigger than vaddr_t. Fix all callers that pass pointers without casts.
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-05-03Clean up a signed vs unsigned error in gm ethernet.Dale Rahn
Pointed out by miod@. thx.
2001-05-02Move powerpc interrupt enablement into the interrupt controller, not afterDale Rahn
config runs. openpic already had this change. Cleans up config operations for other changes.
2001-04-18Remove last change to powerpc pmap. This has a slight chance of being theDale Rahn
cause of a frequent, but not easy to reproduce crash. The reason for making this change is to support functionality that will not be in 2.9.
2001-04-13bmtphyTheo de Raadt
2001-04-11include brgphyTheo de Raadt
2001-04-09FFS_SOFTUPDATES in sys/conf/GENERICTheo de Raadt
2001-04-08Update closer to current status of powerpc, remove items resolved orDale Rahn
mostly resolved.
2001-04-08Some cleanup to the mac audio driver, does not improve the interruptDale Rahn
storm much, but hopefully is in the right direction.
2001-04-08Attempt at tracking interrupt source better than "irqN", with thisDale Rahn
change, when the interrupt is established, the string will be changed from irqN to irqN/dvrname. Some drivers establish nice names, "usb0" some do not, "wdc_obio".
2001-04-03vm_map.pmap should always be used, not only for uvm.Artur Grabowski
2001-03-30Just because someone writes an errant program does not mean we should logDale Rahn
every problem to the console. #if 0 the rest of the user process crash prints.
2001-03-30kue ethernet was reported as working months ago, forgot to add it.Dale Rahn
2001-03-29Get rid of Data modified on freelist: at boot.Dale Rahn
Always allocate the devices's softc structure, not just struct device.
2001-03-29This debug print has outlived it's usefulness, It seems that the VM problemsDale Rahn
have been fixed and certain config scripts perform abnormal tests which trigger this print. This kernel print is a potential DOS attack, thus should be removed.
2001-03-29Instead of commenting out the awacs, "disable" it. It is then possibleDale Rahn
to enable the awacs via config -e or UKC.
2001-03-29Ok, forgot to clean up debug prints before checkin on that file.Dale Rahn
2001-03-29Detect pci bus base more accurately, and save it's size.Dale Rahn
2001-03-29Add support structures for bus space detection/allocation (pci_addr_fixup).Dale Rahn
2001-03-29Add device node for audio.Dale Rahn
2001-03-29Major cleanup.Dale Rahn
Sync with GENERIC config as appropriate for RAMDISK.
2001-03-29Add FFS_SOFTUPDATES option. It is actively being worked on, if not stable.Dale Rahn
Add gpio to route ADB interrpts. configure wskbd at akbd, wsmouse at aws, abtn. Put awacs in config file, but currently disabled due to interrupt storm it causes. ~230000 interrupts per second is a few too many for a device not being used.
2001-03-29Add support for new gpio, abtn, and awacs devices.Dale Rahn
Some cleanup, hints at future direction.
2001-03-29AWACS audio driver for some apple systems. Tested and works on some systems,Dale Rahn
however causes interrupt storm. From Nbsd.
2001-03-29The gpio module is used on newer laptops to route that adb interrupt.Dale Rahn
From Nbsd.
2001-03-29Add ADB "button" driver. used for brightness/volume control on some systems.Dale Rahn
From Nbsd.
2001-03-29Code cleanup, some update from Nbsd.Dale Rahn
2001-03-29Defines for things we should find useful soon. addition PM functionality.Dale Rahn
2001-03-29changes from NetBSD and ftp://nandra.iri.co.jp/pub/NetBSD/macppc/ADB-patchDale Rahn
2001-03-29When initializing a timeout, make certain the parameter to be passedDale Rahn
is not NULL.
2001-03-29Update to adb_direct, from Nbsd.Dale Rahn
2001-03-29Update to ADB mouse driver, from Nbsd.Dale Rahn
2001-03-29Update for adb keyboard driver, from Nbsd.Dale Rahn
2001-03-29If in pmap_kernel() allow vtop for all 1-1 mapped pages.Dale Rahn
2001-03-29Variables removed from common need to live somewhere. Here is good.Dale Rahn
Changes for raw_multi types, obey the correct type defines. Additional support for bus_space_unmap, not quite complete.
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.