Searched refs:drv (Results 1 - 25 of 56) sorted by relevance

123

/broadcom-cfe-1.4.2/cfe/dev/
H A Ddev_ns16550_pci.c59 extern void ns16550_uart_probe(cfe_driver_t *drv,
64 static void ns16550pci_uart_probe(cfe_driver_t *drv,
81 ns16550pci_uart_probe(cfe_driver_t *drv, argument
111 ns16550_uart_probe(drv, pa, NS16550_HZ, NULL);
114 ns16550_uart_probe(drv, pa, NS16550_HZ, NULL);
H A Ddev_null.c52 static void nulldrv_probe(cfe_driver_t *drv,
84 static void nulldrv_probe(cfe_driver_t *drv, argument
88 cfe_attach(drv,NULL,NULL,drv->drv_description);
H A Ddev_atapi.c67 static void atapidrv_probe(cfe_driver_t *drv,
166 static void atapidrv_probe(cfe_driver_t *drv, argument
208 xsprintf(descr,"%s unit %d at %08X",drv->drv_description,probe_b,probe_a);
210 cfe_attach(drv,softc,unitstr,descr);
H A Ddev_smbus_switch.c71 static void switch_probe(cfe_driver_t *drv,
202 * switch_probe(drv,a,b,ptr)
209 * drv - driver handle
217 static void switch_probe(cfe_driver_t *drv, argument
235 drv->drv_description,probe_a,probe_b);
236 cfe_attach(drv,softc,NULL,descr);
H A Ddev_bcm1250.c55 static void bcm1250_probe(cfe_driver_t *drv,
102 bcm1250_probe(cfe_driver_t *drv, argument
129 xsprintf(descr, "%s at 0x%X", drv->drv_description, (uint32_t)pa);
141 cfe_attach(drv, softc, NULL, descr);
H A Ddev_promice.c88 static void promice_probe(cfe_driver_t *drv,
170 * promice_probe(drv,probe_a,probe_b,probe_ptr)
176 * drv - driver structure
184 static void promice_probe(cfe_driver_t *drv, argument
209 xsprintf(descr,"%s at 0x%X",drv->drv_description,probe_a);
210 cfe_attach(drv,softc,NULL,descr);
H A Ddev_smbus_24lc128.c55 static void smbus_24lc128_probe(cfe_driver_t *drv,
195 * smbus_24lc128_probe(drv,a,b,ptr)
202 * drv - driver handle
210 static void smbus_24lc128_probe(cfe_driver_t *drv, argument
231 drv->drv_description,(int)probe_a,(int)probe_b);
232 cfe_attach(drv,softc,NULL,descr);
H A Ddev_smbus_at24c02.c55 static void sb1250_at24c02eeprom_probe(cfe_driver_t *drv,
188 * sb1250_at24c02eeprom_probe(drv,a,b,ptr)
195 * drv - driver handle
203 static void sb1250_at24c02eeprom_probe(cfe_driver_t *drv, argument
224 drv->drv_description,(int)probe_a,(int)probe_b);
225 cfe_attach(drv,softc,NULL,descr);
H A Ddev_ds1743.c100 static void ds1743_clock_probe(cfe_driver_t *drv,
144 * ds1743_clock_probe(drv,a,b,ptr)
151 * drv - driver handle
159 static void ds1743_clock_probe(cfe_driver_t *drv, argument
177 drv->drv_description,(uint32_t)probe_a);
178 cfe_attach(drv,softc,NULL,descr);
402 static void ds1743_nvram_probe(cfe_driver_t *drv,
448 * ds1743_nvram_probe(drv,a,b,ptr)
455 * drv - driver handle
462 static void ds1743_nvram_probe(cfe_driver_t *drv, argument
[all...]
H A Ddev_m48txx.c106 static void m48txx_clock_probe(cfe_driver_t *drv,
150 * m48txx_clock_probe(drv,a,b,ptr)
157 * drv - driver handle
165 static void m48txx_clock_probe(cfe_driver_t *drv, argument
183 drv->drv_description,(uint32_t)probe_a);
184 cfe_attach(drv,softc,NULL,descr);
418 static void m48txx_nvram_probe(cfe_driver_t *drv,
464 * m48txx_nvram_probe(drv,a,b,ptr)
471 * drv - driver handle
478 static void m48txx_nvram_probe(cfe_driver_t *drv, argument
[all...]
H A Ddev_ds17887clock.c119 static void ds17887_clock_probe(cfe_driver_t *drv,
163 * ds17887_clock_probe(drv,a,b,ptr)
170 * drv - driver handle
178 static void ds17887_clock_probe(cfe_driver_t *drv, argument
196 drv->drv_description,(uint32_t)probe_a);
197 cfe_attach(drv,softc,NULL,descr);
H A Ddev_ns16550.c88 void ns16550_uart_probe(cfe_driver_t *drv,
125 void ns16550_uart_probe(cfe_driver_t *drv, argument
138 xsprintf(descr, "%s at 0x%X", drv->drv_description, (uint32_t)probe_a);
140 cfe_attach(drv, softc, NULL, descr);
/broadcom-cfe-1.4.2/cfe/main/
H A Dcfe_attach.c163 * cfe_attach_idx(drv,idx,softc,bootinfo,description)
170 * drv - driver structure (from the device driver module)
185 int cfe_attach_idx(cfe_driver_t *drv,int idx,void *softc, argument
191 xsprintf(name,"%s%d",drv->drv_bootname,idx);
207 dev->dev_class = drv->drv_class;
208 dev->dev_dispatch = drv->drv_dispatch;
221 * cfe_attach(drv,softc,bootinfo,description
228 * drv - driver structure (from the device driver module)
240 void cfe_attach(cfe_driver_t *drv,void *softc, argument
255 res = cfe_attach_idx(drv,id
[all...]
/broadcom-cfe-1.4.2/cfe/include/
H A Dcfe_device.h105 void (*drv_probe)(struct cfe_driver_s *drv,
112 int cfe_attach_idx(cfe_driver_t *drv,int idx,void *softc,char *bootinfo,char *description);
/broadcom-cfe-1.4.2/cfe/arch/mips/chipset/sibyte/src/
H A Ddev_jtag.c66 static void jtag_probe(cfe_driver_t *drv,
120 * jtag_probe(drv,probe_a,probe_b,probe_ptr)
126 * drv - driver structure
134 static void jtag_probe(cfe_driver_t *drv, argument
153 xsprintf(descr,"%s at 0x%X",drv->drv_description,probe_a);
154 cfe_attach(drv,softc,NULL,descr);
H A Ddev_sb1250_pcihost.c57 static void sb1250_hostpci_probe(cfe_driver_t *drv,
95 sb1250_hostpci_probe(cfe_driver_t *drv, argument
110 xsprintf(descr,"%s", drv->drv_description);
111 cfe_attach(drv,softc,NULL,descr);
H A Ddev_sb1250_pcmcia.c81 static void pcmcia_ata_probe(cfe_driver_t *drv,
273 * pcmcia_ata_probe(drv,probe_a,probe_b,probe_ptr)
278 * drv - driver structure
287 static void pcmcia_ata_probe(cfe_driver_t *drv, argument
332 xsprintf(descr,"%s unit %d at %08X",drv->drv_description,probe_b,probe_a);
335 cfe_attach(drv,softc,NULL,descr);
H A Ddev_sb1250_uart.c67 static void sb1250_uart_probe(cfe_driver_t *drv,
124 static void sb1250_uart_probe(cfe_driver_t *drv, argument
148 xsprintf(descr,"%s at 0x%X channel %d",drv->drv_description,probe_a,probe_b);
152 cfe_attach(drv,softc,NULL,descr);
/broadcom-cfe-1.4.2/cfe/net/
H A Ddev_tcpconsole.c70 static void tcpconsole_probe(cfe_driver_t *drv,
126 static void tcpconsole_probe(cfe_driver_t *drv, argument
137 xsprintf(descr, "%s", drv->drv_description);
143 cfe_attach(drv, softc, NULL, descr);
/broadcom-cfe-1.4.2/cfe/pccons/
H A Ddev_pcconsole.c82 static void pcconsole_probe(cfe_driver_t *drv,
211 * pcconsole_probe(drv,probe_a,probe_b,probe_ptr)
216 * drv - driver structure
225 static void pcconsole_probe(cfe_driver_t *drv, argument
254 xsprintf(descr,"%s",drv->drv_description,probe_a,probe_b);
255 cfe_attach(drv,softc,NULL,descr);
H A Ddev_pcconsole2.c79 static void pcconsole_probe(cfe_driver_t *drv,
149 * pcconsole_probe(drv,probe_a,probe_b,probe_ptr)
154 * drv - driver structure
163 static void pcconsole_probe(cfe_driver_t *drv, argument
186 xsprintf(descr,"%s",drv->drv_description,probe_a,probe_b);
187 cfe_attach(drv,softc,NULL,descr);
/broadcom-cfe-1.4.2/cfe/arch/mips/board/bcm1250cpci/src/
H A Ddev_ide.c64 static void idedrv_probe(cfe_driver_t *drv,
173 * idedrv_probe(drv,probe_a,probe_b,probe_ptr)
178 * drv - driver structure
187 static void idedrv_probe(cfe_driver_t *drv, argument
258 xsprintf(descr,"%s unit %d at %08X",drv->drv_description,unit,probe_a);
/broadcom-cfe-1.4.2/cfe/arch/mips/board/swarm/src/
H A Ddev_ide.c64 static void idedrv_probe(cfe_driver_t *drv,
175 * idedrv_probe(drv,probe_a,probe_b,probe_ptr)
180 * drv - driver structure
189 static void idedrv_probe(cfe_driver_t *drv, argument
260 xsprintf(descr,"%s unit %d at %08X",drv->drv_description,unit,probe_a);
/broadcom-cfe-1.4.2/cfe/arch/mips/chipset/bcmsb/src/
H A Ddev_ide.c65 static void idedrv_probe(cfe_driver_t *drv,
176 * idedrv_probe(drv,probe_a,probe_b,probe_ptr)
181 * drv - driver structure
190 static void idedrv_probe(cfe_driver_t *drv, argument
261 xsprintf(descr,"%s unit %d at %08X",drv->drv_description,unit,probe_a);
/broadcom-cfe-1.4.2/cfe/usb/
H A Dusbeth.c201 static void usb_ether_probe(cfe_driver_t *drv, argument
215 cfe_attach(drv,unit,NULL,descr);

Completed in 188 milliseconds

123