summaryrefslogtreecommitdiff
path: root/sys/arch
AgeCommit message (Collapse)Author
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-30sync the I2O section with macppc config, adding the I2O SCSI pass-through ↵Brad Smith
driver.
2006-04-30Do not leave behind half-initialized data structures so we don't stumble overMark Kettenis
corrupt interrupt table entries later on. ok brad@
2006-04-29fix build after timestamping addition; sparc pointed out by pvalchev@Christian Weisgerber
2006-04-29Driver for Silicon Laboratories CP2101/CP2102 based serial adapters.Jonathan Gray
ok dlg@
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-28Fix cast warning in sys/arch/i386/i386/acpi_machdep.c, caused by recent PAEDimitry Andric
checkins which change paddr_t for i386 into an unsigned long long. ok marco
2006-04-27<machine/mvme1x7.h> is not really used anymore, remove it.Miod Vallat
2006-04-27Adjust sizes for the mandatory 1:1 mappings created in pmap_bootstrap().Miod Vallat
Saves up to 12KB of no longer necessary page tables.
2006-04-27Manage a local copy of the MVME188 nvram and update the real data whenMiod Vallat
necessary; allow opening /dev/nvram0 on MVME188 again (but no mmap).
2006-04-272 lines of code to support tty timestampsTheo de Raadt
2006-04-272 lines of code in most drivers, to do the timestamping; ok miod kettenisTheo de Raadt
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-27Oops, correct import this time.Miod Vallat
2006-04-27implement separate PAE pmap that allows access to 64g of physmemMichael Shalayeff
if supported by the cpu(s). currently not enabled by default and not compiled into ramdisks. this grows paddr_t to 64bit but yet leaves bus_addr_t at 32bits. measures are taken to favour dmaable memory allocation from below 4g line such that buffer cache is already allocated form below, pool backend allocator prefers lower memory and then finally bounce buffers are used as last resort. PAE is engaged only if global variable cpu_pae is manually set to non-zero and there is physical memory present above 4g. simplify pcibios address math to use u_long as we always will be in the 32bit space.
2006-04-27from PAE work:Michael Shalayeff
add a BUS_DMA_24BIT flag to signify that dmamap being created is for the isadma use (thus already backed up by the bounce buffers). later also to be used for dmamem allocation.
2006-04-27typoMiod Vallat
2006-04-26On MVME188, the 2KB nvram is non contiguous; each byte is mapped into aMiod Vallat
32 bit int. So map the right size, and fail open() until the uiomove() wrapper is modified to cope with this.
2006-04-26Define BUS_SPACE_MAP_LINEAR and use it when appropriate. Right nowMiod Vallat
bus_space_map() always maps everything linear, but this could change in the future.
2006-04-26The dual-ported memory of the MVME376 boards is D32 addressable, say theMiod Vallat
documentation, so we can use the MI {zero,copy{to,from}}buf_contig callbacks, which rely upon bcopy() and bzero(), instead of their d16_bcopy() and d16_bzero() equivalents. No functional change, except an unnoticeable speedup.
2006-04-26In nmihand(), do not enter ddb with Debugger(), which causes an exception,Miod Vallat
as we might not be in a state where we can process a nested exception. This would then cause an error exception, which handler calls nmihand. Kaboom. Instead, directly invoke m88k_db_trap(); from the AV tree.
2006-04-26We do not need to reserve the 0x60..0x7f interrupt vector range on MVME188,Miod Vallat
so let VME interrupt numbers start at 0x60 on these machines.
2006-04-26In vmapbuf(), instead of invoking pmap_cache_ctrl() for each page, postponeMiod Vallat
the call and process the whole range once.
2006-04-26In pmap_cache_ctrl(), do not flush cache if the previous mapping wasMiod Vallat
cache inhibited; from the AV tree.
2006-04-26Oops, correct import this time.Miod Vallat
2006-04-25enable udcf, why notTheo de Raadt
2006-04-25Oops, correct import this time.Miod Vallat
2006-04-25Oops, correct import this time.Miod Vallat
2006-04-25Missed an include chunk.Miod Vallat
2006-04-25that extern was needed for now, miodTheo de Raadt
2006-04-24Enable profling in asm if either PROF or GPROF is enabled, kernel profilingDale Rahn
builds with GPROF, libraries build with PROF. ok espie, miod
2006-04-23Add puc(4) and com at puc.Mark Kettenis
ok deraadt@
2006-04-22Correct an evil typo which broke MVME147 support.Miod Vallat
2006-04-21Since bugtty (and BUG routines in general) can only work if we keep the BUGMiod Vallat
mapped, and we don't, do not bother carrying this code around - it can not be used anyway.
2006-04-21Do not leave behind half-initialized data structures of we stumble over corruptMark Kettenis
interrupt table entries. ok brad@, mickey@
2006-04-21the esm_sensor_maps describe esm sensors, not kernel sensors. i have noDavid Gwynne
idea how i got this screwed up. found by lint.
2006-04-20Add a few more devices integrated on nForce4 chipsets.Mark Kettenis
2006-04-20no longer failure care; ok miodTheo de Raadt
2006-04-19Get rid of the clock device attachment - since the clock is not somethingMiod Vallat
we can live without, move it into the board-dependent code. This even makes the code slightly smaller. clock.c is moved from dev/ to mvme88k/ and only keeps common variables and delay().
2006-04-19Driver to decode the DCF77 time code using a USB attached Gude ExpertMarc Balmer
mouseCLOCK device; without a mechanism to pass data out. ok deraadt
2006-04-19Count spurious interrupt as part of the alarming interrupt issues as well.Miod Vallat
2006-04-19Better diagnostic messages in the MVME188 interrupt handler; also no needMiod Vallat
to register an interrupt handler for the SYSCON board interrupts anymore, as we never trigger it.
2006-04-19oops. forgot fnclex define (:Michael Shalayeff
2006-04-19from todays freebsd advisory: fxrstor on amd cpu does not restore ↵Michael Shalayeff
fip,fdp,fop thus leaking other proc's execution history; deraadt@ ok
2006-04-19curpcb is long gone and is a #define -- do not declare it global anymore (no ↵Michael Shalayeff
func change)
2006-04-18ANSIfyGordon Willem Klok
ok marco@, dlg@, mickey@