NetBSD/sys/dev/marvell
matt 8909c240f2 Add GT_PCI{0,1}_{IO,MEM}{SIZE,START} options 2003-03-27 07:21:30 +00:00
..
README
files.discovery Add GT_PCI{0,1}_{IO,MEM}{SIZE,START} options 2003-03-27 07:21:30 +00:00
gt.c Cleanup. Move much of the code to bus_space instead of using 2003-03-16 07:05:33 +00:00
gtbrgreg.h
gtethreg.h Use a subregion for the mac's ethernet registers. Shaves 512 bytes 2003-03-17 16:41:15 +00:00
gtidma.c
gtidmareg.h
gtidmavar.h
gtintrreg.h
gtmpsc.c Make reset delay depend on the baud rate. 2003-03-24 20:03:23 +00:00
gtmpscreg.h
gtmpscvar.h Make gtmpsc configurable via config file. (baud rate source, frequency). 2003-03-24 17:02:14 +00:00
gtpci.c Split PCI initialization out of attach hook. 2003-03-18 19:32:46 +00:00
gtpcireg.h Fix tyops. Add 2 defines. 2003-03-24 17:03:18 +00:00
gtpcivar.h Split PCI initialization out of attach hook. 2003-03-18 19:32:46 +00:00
gtreg.h
gtsdmareg.h
gtvar.h Split PCI initialization out of attach hook. 2003-03-18 19:32:46 +00:00
if_gfe.c Update bpf interface to current. Make output buffers aligned to a 2003-03-24 17:00:54 +00:00
if_gfevar.h Use a subregion for the mac's ethernet registers. Shaves 512 bytes 2003-03-17 16:41:15 +00:00
obio.c Only print IRQ is it's not the default value. 2003-03-27 07:20:48 +00:00

README

External m.d. interface points:

To config, code should configure 'gt' with a struct gtbus_attach_args
filled in.  The code should have already set up the bus_space and
bus_dma tags that are passed in.

m.d. pci_chipset_tag_t should contain at least a copy of the
gtpci_chipset_tag_t data structure.

m.d. code must provide the following functions:

pci_intr_map
pci_intr_string
pci_intr_establish,
pci_intr_disestablish

void *gtmpp_intr_establish(struct gt_softc *gt, int mpp_pin, int ipl,
		     int (*handler)(void *), void *arg);
	Add an interrupt attached to Discovery MPP pin <mpp_pin> at
	the given ipl with the given handler.

void gtmpp_intr_disestablish(struct gt_softc *gt, void *cookie);
	Remove an interrupt attached to Discovery MPP pin.

int gtget_macaddr(struct gt_softc *gt, int function, char *enaddr);
	Get MAC for Discovery ethernet <function>

void intr_enable(void);
	Enable all interrupts (disregarding spls)

void intr_disable(void);
	Disable all interrupts (disregarding spls)