summaryrefslogtreecommitdiffstats
path: root/sys/pc98
Commit message (Collapse)AuthorAgeFilesLines
* More low-hanging fruit: kill caddr_t in calls to wakeup(9) / [mt]sleep(9).des2003-03-028-32/+32
|
* NO_GEOM cleanup:phk2003-02-281-32/+12
| | | | Convert to "struct disk *" centric API.
* Implemented "nooption" and "nomakeoption" config(8) tokens.ru2003-02-262-40/+23
| | | | | | | | | | | | | | | | | | | | | | | | Fixed memory leak in the "nodevice" option implementation. Use these instead of sed(1) in MD NOTES. Use a single makefile (sys/conf/makeLINT.mk) to generate LINT for all architectures. (Previous versions missed the LINT dependency on Makefile, and i386 version also missed the dependency on ${NOTES}.) Fixed bugs in the previous NOTES conversion using the "nodevice" token and sed(1): - i386 LINT lost "device pst". - pc98 LINT lost SC_*, MAXCONS and KBD_DISABLE_KEYMAP_LOAD options, and got needless DPT_* options. - Added nooptions PPC_DEBUG, PPC_PROBE_CHIPSET, KBD_INSTALL_CDEV to sparc64 LINT so that it has a chance to config(8). This basically returns us to where we were before.
* Move most everything back to a MI NOTES, and use "nodevice" in MD NOTESobrien2003-02-252-2/+58
| | | | | | | Where needed. Use 'sed' for now in place of "nooptions". Add a sparc64 MD NOTES. Reviewed by: arch@
* Convert one more d_mmap_t consumer I missed in my previous commit.mux2003-02-252-4/+8
|
* Cleanup of the d_mmap_t interface.mux2003-02-253-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | - Get rid of the useless atop() / pmap_phys_address() detour. The device mmap handlers must now give back the physical address without atop()'ing it. - Don't borrow the physical address of the mapping in the returned int. Now we properly pass a vm_offset_t * and expect it to be filled by the mmap handler when the mapping was successful. The mmap handler must now return 0 when successful, any other value is considered as an error. Previously, returning -1 was the only way to fail. This change thus accidentally fixes some devices which were bogusly returning errno constants which would have been considered as addresses by the device pager. - Garbage collect the poorly named pmap_phys_address() now that it's no longer used. - Convert all the d_mmap_t consumers to the new API. I'm still not sure wheter we need a __FreeBSD_version bump for this, since and we didn't guarantee API/ABI stability until 5.1-RELEASE. Discussed with: alc, phk, jake Reviewed by: peter Compile-tested on: LINT (i386), GENERIC (alpha and sparc64) Runtime-tested on: i386
* Add NOTES for pc98.nyan2003-02-232-0/+967
|
* Merged from sys/dev/syscons/syscons.c revision 1.393.nyan2003-02-231-1/+4
|
* Fix compile error with FB_INSTALL_CDEV option.nyan2003-02-232-16/+28
|
* MFi386: revision 1.554.nyan2003-02-232-2/+2
|
* Change the console interface to pass a "struct consdev *" instead of aphk2003-02-203-24/+36
| | | | | | | | | dev_t to the method functions. The dev_t can still be found at struct consdev *->cn_dev. Add a void *cn_arg element to struct consdev which the drivers can use for retrieving their softc.
* Back out M_* changes, per decision of the TRB.imp2003-02-194-9/+9
| | | | Approved by: trb
* Change "dev_t gdbdev" to "void *gdb_arg", some possible paths for GDBphk2003-02-162-8/+8
| | | | will not have a dev_t.
* Remove #include <sys/dkstat.h>phk2003-02-162-2/+0
|
* Fix the style of the SCHED_4BSD commit.obrien2003-02-131-1/+1
|
* Switch to use the TSC code i386/i386/tsc.cphk2003-02-113-330/+3
|
* Merged from sys/dev/sio/sio.c revision 1.383.nyan2003-02-072-0/+4
|
* Reduce diff to i386/isa/clock.c by unifdef -DPC98phk2003-02-053-1245/+0
|
* Typo in last commitphk2003-02-053-3/+3
|
* MFi386: write the correct weekday back to the RTC.phk2003-02-053-3/+3
|
* Oops, fix copyright again.nyan2003-02-045-0/+9
| | | | Noticed by: hrs
* Fix copyright notification.takawata2003-02-044-4/+4
|
* Split the global timezone structure into two integer fields tophk2003-02-033-9/+9
| | | | | | | | | | prevent the compiler from optimizing assignments into byte-copy operations which might make access to the individual fields non-atomic. Use the individual fields throughout, and don't bother locking them with Giant: it is no longer needed. Inspired by: tjr
* Split statclock into statclock and profclock, and made the method for drivingjake2003-02-033-6/+45
| | | | | | | | | | | | | statclock based on profhz when profiling is enabled MD, since most platforms don't use this anyway. This removes the need for statclock_process, whose only purpose was to subdivide profhz, and gets the profiling clock running outside of sched_lock on platforms that implement suswintr. Also changed the interface for starting and stopping the profiling clock to do just that, instead of changing the rate of statclock, since they can now be separate. Reviewed by: jhb, tmm Tested on: i386, sparc64
* Add CanBe power management controller support.nyan2003-02-036-0/+790
| | | | Submitted by: KIYOHARA Takashi <kiyohara@kk.iij4u.or.jp>
* Put replace spaces with tabs in keeping with the rest of the file.joe2003-02-011-1/+1
|
* NO_GEOM cleanup: don't #include <sys/diskslice.h>phk2003-02-011-1/+0
|
* MFi386: revision 1.192.nyan2003-01-303-12/+15
|
* NO_GEOM cleanup: retire to attic.phk2003-01-301-404/+0
|
* Remove pc98/wfd and pc98/wst drivers, they have been broken to thephk2003-01-304-1502/+0
| | | | | | | point of not even compiling for a very long time. Any effort spent unbreaking them would be better spent perfecting the ata drivers for PC98, should any issues remain there.
* Make tsc_freq a 64bit on PC98 also.phk2003-01-293-6/+9
|
* Remove BDE_DEBUGGER.jake2003-01-282-14/+2
| | | | Discussed with: bde
* - Introduce the SCHED_ULE and SCHED_4BSD options for compile time selectionjeff2003-01-261-0/+1
| | | | | of the scheduler. - Add SCHED_4BSD as the scheduler for all kernel config files in cvs.
* Remove M_TRYWAIT/M_WAITOK/M_WAIT. Callers should use 0.alfred2003-01-214-9/+9
| | | | Merge M_NOWAIT/M_DONTWAIT into a single flag M_NOWAIT.
* #ifdef NO_GEOM these files entirely. When NO_GEOM is removed as anphk2003-01-191-0/+2
| | | | option the files can be removed.
* MFi386: revision 1.372nyan2003-01-161-0/+1
|
* Merged from sys/isa/syscons_isa.c revision 1.21.nyan2003-01-152-16/+38
|
* - Add inline functions for {ll,l,}abs() to libkern.mdodd2003-01-151-11/+0
| | | | - Remove hand rolled abs() functions.
* Fixed typo and style.nyan2003-01-131-2/+2
| | | | Submitted by: Toru Morimoto <too@os.gulf.or.jp>
* Merged from sys/isa/fd.c revision 1.244.nyan2003-01-122-0/+6
|
* MFi386: revision 1.552.nyan2003-01-102-4/+0
|
* Rename the dos_partition structure for pc98 to pc98_partition.nyan2003-01-041-7/+7
|
* Merged from sys/isa/fd.c revision 1.243.nyan2003-01-032-12/+0
|
* Remove unused second argument from DEV_STRATEGY().phk2003-01-031-1/+1
|
* Correct typos, mostly s/ a / an / where appropriate. Some whitespace cleanup,schweikh2003-01-013-3/+3
| | | | especially in troff files.
* MFi386: Add the bge driver.nyan2002-12-311-0/+1
|
* Fix typos, mostly s/ an / a / where appropriate and a few s/an/and/schweikh2002-12-302-2/+2
| | | | Add FreeBSD Id tag where missing.
* Unspam some experimental changes which should not have been committed.phk2002-12-171-13/+40
|
* unifdef -DPC98 -U__alpha__phk2002-12-151-315/+13
|
* MFi386: revision 1.551.nyan2002-12-042-6/+12
| | | | Approved by: re (jhb)
OpenPOWER on IntegriCloud