aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/ppc
Commit message (Collapse)AuthorAgeFilesLines
* $Id$ -> $FreeBSD$Peter Wemm1999-08-282-2/+2
| | | | Notes: svn path=/head/; revision=50477
* Return the port size from the probe.Peter Wemm1999-04-221-2/+3
| | | | | | | | "ppc0 at port 0x378 irq 7 drq 3 on isa0" becomes "ppc0 at port 0x378-0x37f irq 7 drq 3 on isa0" Notes: svn path=/head/; revision=45935
* More appropriate fix to the id_irq read during probeNicolas Souchu1999-02-141-3/+3
| | | | Notes: svn path=/head/; revision=44023
* The way the interrupt id was calculated was wrong and the lptNicolas Souchu1999-02-141-2/+2
| | | | | | | | | | driver was thinking irq was enabled although it wasn't. This case was particular to a no-interrupt static configuration. Reported by: "Norman C. Rice" <nrice@emu.sourcee.com> Notes: svn path=/head/; revision=44001
* Fix interrupt handling with DMA. Bit nFault was tested in the control reg.Nicolas Souchu1999-02-141-5/+10
| | | | | | | instead of the status reg. and check ECP mode before considering nFault. Notes: svn path=/head/; revision=43990
* Fix compile warnings about missing braces around static initialization of ↵Nicolas Souchu1999-01-311-3/+3
| | | | | | | unions. Notes: svn path=/head/; revision=43460
* Distinguish EPP address/data register. Add EPP address register access to ppi.Nicolas Souchu1999-01-302-18/+19
| | | | | | | | | | | Change microseq offsets. Previously, offsets of the program counter where added to the index of the current microinstruction. Make them rely on the index of the next executed microinstruction. Suggested by: Luigi Rizzo <luigi@labinfo.iet.unipi.it> Notes: svn path=/head/; revision=43433
* Fix broken low level ppb_rxxx() return type: char becomes u_char.Nicolas Souchu1999-01-102-18/+18
| | | | | | | | | Submitted by: Bruce Evans <bde@zeta.org.au> Some ppb bootup printfs simplified. Notes: svn path=/head/; revision=42482
* Major ppbus commit with:Nicolas Souchu1999-01-102-52/+486
| | | | | | | | | | | | | | | | | | | | | | + ECP parallel port chipset FIFO detection + DMA+FIFO parallel I/O handled as chipset specific + nlpt updated in order to use the above enhanced parallel I/O. Use 'lptcontrol -e' to use enhanced I/O + Various options documented in LINT + Full IEEE1284 NIBBLE and BYTE modes support. See ppbus(4) for an overview of the IEEE1284 standard + Detection of PnP parallel devices at boot + Read capability added to nlpt driver to get IEEE1284 compliant printer status with a simple 'cat /dev/lpt0' + IEEE1284 peripheral emulation added to BYTE mode. Two computers may dialog according to IEEE1284 signaling method. See PERIPH_1284 option and /sys/dev/ppbus/ppi.c All this code is supposed to provide basic functions for IEEE1284 programming. ppi.c and nlpt.c may act as examples. Notes: svn path=/head/; revision=42475
* Silence -Wtrigraph.Tim Vanderhoek1998-12-301-2/+2
| | | | | | | Submitted by: Bradley Dunn <bradley@dunn.org> (pr: kern/8817) Notes: svn path=/head/; revision=42155
* The "easy" fixes for compiling the kernel -Wunused: remove unreferenced staticArchie Cobbs1998-12-071-9/+3
| | | | | | | and local variables, goto labels, and functions declared but not defined. Notes: svn path=/head/; revision=41591
* pcf.c: timeout management addedNicolas Souchu1998-10-312-99/+218
| | | | | | | ppc.c: nsc code improved. Actually, a complete rewrite. Notes: svn path=/head/; revision=40784
* Initialize isa_devtab entries for interrupt handlers in individualBruce Evans1998-10-221-2/+5
| | | | | | | | | | device drivers, not in ioconf.c. Use a different hack in isa_device.h so that a new config(8) is not required yet. pc98 parts approved by: kato Notes: svn path=/head/; revision=40565
* - program counter was previously an index in the microsequence, now pcNicolas Souchu1998-09-201-26/+18
| | | | | | | is struct ppb_microseq* pointing directly into the microsequence Notes: svn path=/head/; revision=39521
* invalid printf call fixed -> compile time warning removedNicolas Souchu1998-09-131-2/+2
| | | | Notes: svn path=/head/; revision=39142
* ppbus enhanced to support ZIP+ : microseq improvedNicolas Souchu1998-09-132-27/+69
| | | | Notes: svn path=/head/; revision=39135
* printing with compatible mode fixed if ECP available + more verbose if ↵Nicolas Souchu1998-09-021-43/+163
| | | | | | | bootverbose set Notes: svn path=/head/; revision=38761
* Fixed printf format errors. Only one left in LINT on i386's.Bruce Evans1998-08-241-3/+2
| | | | Notes: svn path=/head/; revision=38505
* Major ppbus updates from the author.Mike Smith1998-08-032-190/+609
| | | | | | | | | | | | | | | | | | | | - ppbus now supports PLIP via the if_plip driver - ieee1284 infrastructure added, including parallel-port PnP - port microsequencer added, for scripting the sort of port I/O that is common with parallel devices without endless calls up and down through the driver structure. - improved bus ownership behaviour among the ppbus-using drivers. - improved I/O chipset feature detection The vpo driver is now implemented using the microsequencer, leading to some performance improvements as well as providing an extensive example of its use. Reviewed by: msmith Submitted by: Nicolas Souchu <Nicolas.Souchu@prism.uvsq.fr> Notes: svn path=/head/; revision=38061
* Seventy-odd "its" / "it's" typos in comments fixed as per kern/6108.Dag-Erling Smørgrav1998-04-171-2/+2
| | | | Notes: svn path=/head/; revision=35256
* Removed unused #includes.Bruce Evans1997-09-011-8/+1
| | | | Notes: svn path=/head/; revision=28987
* Minor ppc_data structure tweak.Mike Smith1997-08-161-3/+3
| | | | | | | Submitted by: Nicolas Souchu <Nicolas.Souchu@prism.uvsq.fr> Notes: svn path=/head/; revision=28259
* ISA Parallel-Port Bus chipset driver.Mike Smith1997-08-142-0/+901
Submitted by: Nicolas Souchu <Nicolas.Souchu@prism.uvsq.fr> Notes: svn path=/head/; revision=28221