summaryrefslogtreecommitdiff
path: root/sys/arch/macppc
AgeCommit message (Collapse)Author
2002-06-11Add missing bus_space_read_raw_region_X bus_space_write_raw_region_X APIs.Dale Rahn
2002-06-11... but ucom can not be used as a console, oops. Me needs more booze.Miod Vallat
2002-06-11Correct com vs ucom cut-n-paste thinko.Miod Vallat
2002-06-09knf/cleanup/dead code removal.Dale Rahn
2002-06-09more arpcom ->sc_arpcom missing.Dale Rahn
2002-06-08One ddb to rule them all.Miod Vallat
Move the ddb files form macppc/macppc to powerpc/ddb, so that mvmeppc can benefit from the better ddb that was in macppc. db_interface.c is left as an md part.
2002-06-08Factorize common parts (cache-related stuff).Miod Vallat
ok drahn@
2002-06-08Macppc switches to gem from gm. Use the MI, better, Gig-E capable driver.Dale Rahn
2002-06-07Fix DDB build problem, minor cleanup.Dale Rahn
2002-06-07Add wsconsctl recognition support for adb keyboard.Dale Rahn
2002-06-07Hand-editing diff file to remove a few chunks that you don't want toMiod Vallat
commit now sucks. Especially when you accidentally delete an important chunk. Put a few more pm_xxx() prototypes there to unbreak compilation, 10x maja@
2002-06-07Vacuum cleaning of the adb code, step 1: random KNF, remove mac68kMiod Vallat
leftovers, unused variables and functions, fix some comments, etc.
2002-06-07KNFMiod Vallat
2002-06-07Move more function prototypes to <machine/conf.h> as cdev_decl(foo)Miod Vallat
for safety.
2002-05-30Add a german keymap for iBook. Based on "Key Caps" on Mac OS X 10.1.4.Mats O Jansson
Created by me and tested by Peter Janze <janze@digitalblue.de>. -moj
2002-05-22Allow brightness buttons to affect the console brightness whenever possible;Miod Vallat
however, the brightness settings are neither saved in nor read from the nvram.
2002-05-22Put abtn back in GENERIC. RAMDISK kernels do not need it.Miod Vallat
2002-05-22- in the OpenFirmware console initialisation, check if the console deviceMiod Vallat
has support for backlight control (laptops do, and probably machines with a built-in monitor do as well). - provide a function to set the screen brightness as well. - use both changes above to add a screen blanker to the vgafb driver - let the screen brightness and backlight be controlled via wsconsctl - clean dust, KNF, and more symbolic names in the vgafb driver to make it better readable Initial code by myself, with some hacks from drahn@ later.
2002-05-18Workaround for color restoration on return from X. vgafb will notDale Rahn
reset the color palette to it's default colors when going back to text mode. Would be better to fix this in the X server. ok matthieu@
2002-05-18Rename the MD db_stack_trace_cmd to db_stack_trace_print. Add an argumentArtur Grabowski
that specifies which printf funciton it should use. Implement db_stack_trace_cmd in MI code. Thanks to miod@ for all the tests.
2002-05-16Add systrace support to all the remaining architectures.Miod Vallat
Tested by various people on various platforms, I'm willing to fix any breakage this causes. ok niels@ deraadt@ and mickey@ (after his comments were applied)
2002-05-15Remove the assembler kludges to allow altivec support without assembler helpDale Rahn
now that binutils is updated. As hoped, resulting .o file was identical.
2002-05-13Add missing cnpollc() calls.Dale Rahn
2002-05-09On the hid -> hiddev changes, this file was missed.Dale Rahn
2002-05-09Sync hid stuff including ukbd, ums, and uhid with NetBSDNathan Binkert
This adds a uhidev device which can be thought of as something like a uhid bus. It allows more than one ukbd, ums, or uhid to attach to the same device instance. This functionality is found on many of the newer keyboards that have extra buttons. (The extra buttons show up as uhid device(s)). Tested by me on i386, dale on macppc, and jason on sparc64
2002-05-09Make the paragraph degree key on a swedish iBook keyboard work in X.Mats O Jansson
The only problem is that its switched with the less greater key. Add an option FIX_SV_X_KBDBUG to fix that. -moj
2002-05-08Overhaul of the french layout for adb keyboards, fixing errors, adding a lotMiod Vallat
more useful symbols (such as ~ | \ { } etc) that were not available before. Requested by some French users, checked against MacOS's keyboard applet.
2002-05-07move ether_crc32_le to if_ethersubr.c. Add ether_crc32_beNathan Binkert
2002-04-29Better colors from rasops cmap, and enable all rasops features.Dale Rahn
ok miod, mattheiu
2002-04-29Change macppc vgafb from rcons to rasops, a faster color supporting virtualDale Rahn
terminal emulator for gfx console. tested by mattheiu, miod.
2002-04-29cleanup, remove devices which macppc is likely to never have, commentDale Rahn
drivers not currently present in source space.
2002-04-29Print out cache sizes on newer G4 processors. Partially from NetBSD.Dale Rahn
2002-04-26a little grammarMichael Shalayeff
2002-04-26properly allocate dmable memory for buffers (no malloc); drahn@ ok and testingMichael Shalayeff
2002-04-24Introduce a new file, machine/internal_types.h, to hold that specific archMarc Espie
type characteristics. internal_types.h will contain only settings invisible from standard C, e.g., in the __* or _[A-Z]* namespace, and be reused by files like limits.h. This allows us to shorten machine/limits.h greatly, as all the common defines are now in sys/limits.h, plus a small stub in internal_types.h. Tested on all arches as far as I know. Approved after discussion with art, millert, deraadt, and others.
2002-04-22Fix a couple of typos.Miod Vallat
2002-04-20- the set-colors OF call takes a packed array of colors value,Matthieu Herrb
remove the extra padding byte in the vgafb_color struct. - store the initial colormap in vc->vc_cmap_{red,green,blue} so that it can be fetched by a WSDISPLAYIO_GETCMAP ioctl - fix the definition of the magenta color in the initial colormap. Ok, drahn@
2002-04-10Handle all pending adb interrupts when searching for devices.Dale Rahn
Adjust delays in the probe code. ok miod, matthieu, lebel, brad.
2002-04-08wi* at pci* works with PLX pci adapters.Dale Rahn
Note: true pcmcia bridges are not currently supported.
2002-04-05fxp does not work on powerpc.Dale Rahn
2002-04-05add wsmux to the macppc ramdisk, to allow all keyboards to attach.Dale Rahn
2002-04-05Use the OF set-colors operation instead of the color! operation, thisDale Rahn
interface seems to work on more machines, also is more efficient when XF4/wsfb is setting the palette. ok deraadt@
2002-04-02uncomment lxtphy(4) and enable eephy(4) in the RAMDISK kernel;lebel
asked by miod@, OK'ed by drahn@
2002-04-02new PowerBook G4 has a Marvell 88E1000 Gigabit PHY, model 6,lebel
so activate the eephy(4) device for it
2002-04-01s/3.0/3.1/ so that the CD will boot properly.Dale Rahn
2002-03-31enable wsmux on macppc, note that this will REQUIRE changes to XF86Config.Dale Rahn
2002-03-30Add support for WSCONS_COMPAT_RAWKBD to macppc, see warning sent to ppc@Dale Rahn
This is in preparation for wsmux support.
2002-03-30Use the extended keycodes to get real delete/pgup/pgdn/home/end.Dale Rahn
2002-03-29add numlock, pgup, pgdn, home, end.Dale Rahn
2002-03-29Change lower enter key to be 'Mode_Switch' like it was before.Dale Rahn
Add note for power button (not currently translated). Meta_L vs Super_L is still an issue (CMD/Win key) o CMD/Win key is Super_L not Meta_L, usb has this too. Changing to RAW will change swap Meta and Alt (to what is printed on key, not PC layout).