summaryrefslogtreecommitdiff
path: root/sys/arch/macppc
AgeCommit message (Collapse)Author
2006-07-14change pcibr_flags back to 0 (turn off verbose mode). If anyone has aTheo de Raadt
problem with a new kernel in the next while, please revert this specific commit and mail the results to kettenis, drahn, and me.
2006-07-13Switch to a three-phase pci resource fixup:Mark Kettenis
1. Reserve resources for enabled devices. 2. Reserve resources for disabled devices. 3. Allocate resources. This way we no longer need to enable/disable devices during fixup. Based on an earlier patch by drahn@. ok deraadt@, drahn@
2006-07-11Hook up the hw.product sysctl on macppc,Gordon Willem Klok
requested by deraadt@, ok drahn@
2006-07-01Eliminate redundant get_le() in favour of letoh32(). Add letoh32()Kenneth R Westerback
calls in alpha, hppa, hppa64 and mips63 when accessing the two DOS MBR u_int32_t fields dp_size and dp_start. No functional change.
2006-06-30Old typos bite the dust.Miod Vallat
2006-06-26Clean up some inconsistancies in definitions around DOS MBR code. NoKenneth R Westerback
functional change. ok deraadt@
2006-06-26Enable wide targets on FAS366 esp; note that this changes the way espMiod Vallat
user-controllable device flags are parsed, be sure to rerun config(8) on your next kernel compile.
2006-06-22Enable sk(4).Brad Smith
ok reyk@
2006-06-22do not enable the gpio parent eitherTheo de Raadt
2006-06-21this gpio should not be enabledTheo de Raadt
2006-06-19Be more strict in the probe routines and actually check ca_nintr andMiod Vallat
ca_nreg are large enough for our greedy needs; tweaks and ok kettenis@
2006-06-19Remove redundant test in uni_n_config() as well as an unused softc member;Miod Vallat
ok kettenis@
2006-06-19move clock_subr.c to a better place, and now it is always in the kernelTheo de Raadt
so that things can use it; tested on all architectures; ok kettenis
2006-06-17Recent Powerbook systems have their on-board keyboard and mouse devicesMiod Vallat
also showing up as usb devices, but both devices are tied. To make things less confusing, do not attach the usb phantoms at all.
2006-06-16typoPedro Martelletto
2006-06-02now that com_cardbus works on macppc, add 'com* at cardbus?' to GENERICFelix Kronlage
ok martin@
2006-06-01add xge(4).Brad Smith
2006-06-01Right at the end of a debug kernel build, the current Makefile copies bsdChristopher Pascoe
(with symbols) to bsd.gdb, then strips bsd. This diff makes it rename the file with symbols, and then asks strip to output the stripped version as bsd. Avoids a potentially lengthy wait when we would otherwise copy the large (50MB+) kernel with debug symbols. ok reyk@ ketennis@
2006-05-31enable mpi in GENERIC on amd64, i386, and macppc. jason already enabled itDavid Gwynne
on sparc64 last night. macppc gets it in RAMDISK as well.
2006-05-30The aperture that is needed in legacy vga space is even larger forMatthieu Herrb
the mac mini's ATI graphics card. The full 0xa0000-0xfffff range is used here.
2006-05-10Use a macro in the MI powerpc PCI header for pci_intr_line() insteadBrad Smith
of a function in the MD macppc host bridge code. ok drahn@
2006-05-02The r128 driver also need the 0xb0000-0xc0000 address range. found by Jolan@.Matthieu Herrb
2006-04-30add I2O to the RAMDISKBrad Smith
2006-04-30Enable rtw@pciBrad Smith
2006-04-30- Enable fxp and rl@CardBus on GENERIC and RAMDISKBrad Smith
- Enable dc@CardBus on RAMDISK, already in GENERIC - Enable wdc@PCMCIA on RAMDISK, already in GENERIC
2006-04-28In mapped mode, when allowaperture != 0,also allow mmapping of theMatthieu Herrb
PC-style 0xa0000-0xb0000 region, as the nv X driver uses it. Noticed and patch tested by xsa@ and aanriot@.
2006-04-27move 'midi* at umidi?' to the same place as for i386.Marc Balmer
2006-04-27Bring 'ural* at uhub?' to the right position (keep the usb chunks in configMarc Balmer
files the same) "move things" deraadt
2006-04-27Enable udcf(4) on macppc.Marc Balmer
ok deraadt
2006-04-23Add puc(4) and com at puc.Mark Kettenis
ok deraadt@
2006-04-10typo by bradTheo de Raadt
2006-04-10Intrepid 2 host bridges.Brad Smith
2006-04-10recognize the Intrepid 2 ATA controller.Brad Smith
2006-04-09On macppc and sparc64, if allowaperture=0 only allow mmap()-ing ofMatthieu Herrb
the framebuffer memory in WSDISPLAYIO_MODE_DUMBFB mode.
2006-04-05enable tqphy(4) here tooMartin Reindl
2006-04-05Enable an(4) on BE archs now that it works.Kurt Miller
2006-04-04enable tqphy(4), found on xl(4)Martin Reindl
2006-03-31No point in calling pte_spill_r() 90% of the time, when the first thingDale Rahn
it is going to do is test user/kernel and return, do it before the call.
2006-03-27com at pcmcia; from fkr@bytemine.deTheo de Raadt
2006-03-27put com(4) at cdevsw 26Theo de Raadt
2006-03-25allow bpf(4) to ignore packets based on their direction (inbound orDamien Miller
outbound), using a new BIOCSDIRFILT ioctl; guidance, feedback and ok canacar@
2006-03-24Enable umsm(4) on archs that support CardBus.Jonathan Gray
2006-03-20Don't forget to unlock of reading the RTC fails.Mark Kettenis
Should fix panic on iMac G5 (iSight).
2006-03-16ventical -> verticalMiod Vallat
2006-03-15use sysctl_int_lower() for the aperture variable. This lets root closeTheo de Raadt
the aperture without having to reboot, but does not allow re-opening; ok matthieu
2006-03-15Remove dead code (SUPPORTS_NON_CONSOLE and MD_DISPLAY_ISA_IOT)Matthieu Herrb
ok miod@, drahn@, dim@.
2006-03-15Nuke dk_establish(), no longer used.Miod Vallat
2006-03-13* Add "pcitag_t *pba_bridgetag" to pci_attach_args. This is set toBrad Smith
NULL for root PCI busses. For busses behind a bridge, it points to a persistent copy of the bridge's pcitag_t. This can be very useful for machine-dependent PCI bus enumeration code. From NetBSD ok grange@ kettenis@
2006-03-12IPL_IMP -> IPL_VMBrad Smith
ok drahn@
2006-03-09Do not include <lib/libkern/libkern.h> explicitely, get it via <sys/systm.h>.Miod Vallat