Searched refs:dev (Results 676 - 700 of 6298) sorted by relevance

<<21222324252627282930>>

/freebsd-11-stable/sys/dev/etherswitch/arswitch/
H A Darswitch_7240.c27 * $FreeBSD: stable/11/sys/dev/etherswitch/arswitch/arswitch_7240.c 330456 2018-03-05 08:14:11Z eadler $
48 #include <dev/iicbus/iic.h>
49 #include <dev/iicbus/iiconf.h>
50 #include <dev/iicbus/iicbus.h>
51 #include <dev/mii/mii.h>
52 #include <dev/mii/miivar.h>
53 #include <dev/mdio/mdio.h>
55 #include <dev/etherswitch/etherswitch.h>
57 #include <dev/etherswitch/arswitch/arswitchreg.h>
58 #include <dev/etherswitc
118 ar7240_probe(device_t dev) argument
[all...]
/freebsd-11-stable/stand/mips/beri/loader/
H A Dberi_disk_sdcard.c95 struct disk_devdesc *dev; local
98 dev = va_arg(ap, struct disk_devdesc *);
106 if (dev->dd.d_unit != 0)
108 return (disk_open(dev, altera_sdcard_get_mediasize(),
115 struct disk_devdesc *dev; local
117 dev = (struct disk_devdesc *)f->f_devdata;
118 return (disk_close(dev));
124 struct disk_devdesc dev; local
136 dev.dd.d_dev = &beri_sdcard_disk;
137 dev
[all...]
/freebsd-11-stable/sys/dev/gpio/
H A Dgpioled.c28 __FBSDID("$FreeBSD: stable/11/sys/dev/gpio/gpioled.c 349208 2019-06-19 20:12:00Z avg $");
42 #include <dev/gpio/gpiobusvar.h>
43 #include <dev/led/led.h>
87 gpioled_probe(device_t dev) argument
89 device_set_desc(dev, "GPIO led");
95 gpioled_attach(device_t dev) argument
101 sc = device_get_softc(dev);
102 sc->sc_dev = dev;
103 sc->sc_busdev = device_get_parent(dev);
108 if (resource_string_value(device_get_name(dev),
121 gpioled_detach(device_t dev) argument
[all...]
/freebsd-11-stable/sys/dev/sdhci/
H A Dsdhci_acpi.c27 __FBSDID("$FreeBSD: stable/11/sys/dev/sdhci/sdhci_acpi.c 343504 2019-01-27 19:04:28Z marius $");
44 #include <contrib/dev/acpica/include/acpi.h>
45 #include <dev/acpica/acpivar.h>
47 #include <dev/mmc/bridge.h>
48 #include <dev/mmc/mmcreg.h>
50 #include <dev/sdhci/sdhci.h>
109 static int sdhci_acpi_detach(device_t dev);
112 sdhci_acpi_read_1(device_t dev, struct sdhci_slot *slot __unused, argument
115 struct sdhci_acpi_softc *sc = device_get_softc(dev);
123 sdhci_acpi_write_1(device_t dev, struc argument
134 sdhci_acpi_read_2(device_t dev, struct sdhci_slot *slot __unused, bus_size_t off) argument
145 sdhci_acpi_write_2(device_t dev, struct sdhci_slot *slot __unused, bus_size_t off, uint16_t val) argument
156 sdhci_acpi_read_4(device_t dev, struct sdhci_slot *slot __unused, bus_size_t off) argument
167 sdhci_acpi_write_4(device_t dev, struct sdhci_slot *slot __unused, bus_size_t off, uint32_t val) argument
178 sdhci_acpi_read_multi_4(device_t dev, struct sdhci_slot *slot __unused, bus_size_t off, uint32_t *data, bus_size_t count) argument
187 sdhci_acpi_write_multi_4(device_t dev, struct sdhci_slot *slot __unused, bus_size_t off, uint32_t *data, bus_size_t count) argument
196 sdhci_acpi_set_uhs_timing(device_t dev, struct sdhci_slot *slot) argument
242 sdhci_acpi_find_device(device_t dev) argument
271 sdhci_acpi_probe(device_t dev) argument
285 sdhci_acpi_attach(device_t dev) argument
353 sdhci_acpi_detach(device_t dev) argument
373 sdhci_acpi_shutdown(device_t dev) argument
380 sdhci_acpi_suspend(device_t dev) argument
393 sdhci_acpi_resume(device_t dev) argument
[all...]
/freebsd-11-stable/sys/compat/linuxkpi/common/src/
H A Dlinux_pci.c49 #include <dev/pci/pcivar.h>
50 #include <dev/pci/pci_private.h>
51 #include <dev/pci/pci_iov.h>
90 linux_pci_find(device_t dev, const struct pci_device_id **idp) argument
99 vendor = pci_get_vendor(dev);
100 device = pci_get_device(dev);
101 subvendor = pci_get_subvendor(dev);
102 subdevice = pci_get_subdevice(dev);
122 linux_pci_probe(device_t dev) argument
127 if ((pdrv = linux_pci_find(dev,
136 linux_pci_attach(device_t dev) argument
207 linux_pci_detach(device_t dev) argument
227 linux_pci_suspend(device_t dev) argument
250 linux_pci_resume(device_t dev) argument
273 linux_pci_shutdown(device_t dev) argument
285 linux_pci_iov_init(device_t dev, uint16_t num_vfs, const nvlist_t *pf_config) argument
300 linux_pci_iov_uninit(device_t dev) argument
311 linux_pci_iov_add_vf(device_t dev, uint16_t vfnum, const nvlist_t *vf_config) argument
[all...]
/freebsd-11-stable/sys/arm/xscale/pxa/
H A Dif_smc_smi.c46 #include <dev/smc/if_smcvar.h>
48 #include <dev/mii/mii.h>
49 #include <dev/mii/miivar.h>
61 smc_smi_probe(device_t dev) argument
65 sc = device_get_softc(dev);
68 if (smc_probe(dev) != 0) {
75 smc_smi_attach(device_t dev) argument
80 sc = device_get_softc(dev);
82 err = smc_attach(dev);
91 smc_smi_detach(device_t dev) argument
[all...]
/freebsd-11-stable/sys/dev/bwn/
H A Dif_bwn_util.c66 #include <dev/pci/pcivar.h>
67 #include <dev/pci/pcireg.h>
68 #include <dev/siba/siba_ids.h>
69 #include <dev/siba/sibareg.h>
70 #include <dev/siba/sibavar.h>
78 #include <dev/bwn/if_bwnreg.h>
79 #include <dev/bwn/if_bwnvar.h>
81 #include <dev/bwn/if_bwn_chipid.h>
82 #include <dev/bwn/if_bwn_debug.h>
83 #include <dev/bw
[all...]
/freebsd-11-stable/sys/dev/atkbdc/
H A Datkbdc_isa.c42 #include <dev/atkbdc/atkbdc_subr.h>
43 #include <dev/atkbdc/atkbdcreg.h>
48 static int atkbdc_isa_probe(device_t dev);
49 static int atkbdc_isa_attach(device_t dev);
52 static struct resource *atkbdc_isa_alloc_resource(device_t dev, device_t child,
55 static int atkbdc_isa_release_resource(device_t dev, device_t child,
96 atkbdc_isa_probe(device_t dev) argument
112 if (ISA_PNP_PROBE(device_get_parent(dev), dev, atkbdc_ids) == ENXIO)
115 device_set_desc(dev, "Keyboar
188 atkbdc_isa_attach(device_t dev) argument
297 atkbdc_isa_alloc_resource(device_t dev, device_t child, int type, int *rid, rman_res_t start, rman_res_t end, rman_res_t count, u_int flags) argument
310 atkbdc_isa_release_resource(device_t dev, device_t child, int type, int rid, struct resource *r) argument
[all...]
/freebsd-11-stable/sys/dev/ppc/
H A Dppc_acpi.c42 #include <dev/ppbus/ppbconf.h>
43 #include <dev/ppbus/ppb_msq.h>
44 #include <dev/ppc/ppcvar.h>
45 #include <dev/ppc/ppcreg.h>
49 static int ppc_acpi_probe(device_t dev);
51 int ppc_isa_attach(device_t dev);
99 ppc_acpi_probe(device_t dev) argument
104 parent = device_get_parent(dev);
106 error = ISA_PNP_PROBE(parent, dev, lpc_ids);
110 device_set_desc(dev, "Paralle
[all...]
/freebsd-11-stable/sys/sparc64/pci/
H A Dofw_pcib_subr.c36 #include <dev/ofw/ofw_bus.h>
37 #include <dev/ofw/ofw_pci.h>
38 #include <dev/ofw/openfirm.h>
42 #include <dev/pci/pcireg.h>
43 #include <dev/pci/pcivar.h>
44 #include <dev/pci/pcib_private.h>
57 sc->ops_pcib_sc.dev = bridge;
67 ofw_pcib_gen_route_interrupt(device_t bridge, device_t dev, int intpin) argument
78 if (ofw_bus_lookup_imap(ofw_bus_get_node(dev), ii, &reg,
93 return (pcib_route_interrupt(bridge, dev, intpi
101 ofw_pcib_gen_get_node(device_t bridge, device_t dev) argument
[all...]
/freebsd-11-stable/sys/sparc64/sparc64/
H A Dschppm.c38 #include <dev/ofw/ofw_bus.h>
86 schppm_probe(device_t dev) argument
90 compat = ofw_bus_get_compat(dev);
91 if (compat != NULL && strcmp(ofw_bus_get_name(dev), "ppm") == 0 &&
93 device_set_desc(dev, "Schizo power management");
100 schppm_attach(device_t dev) argument
104 sc = device_get_softc(dev);
105 if (bus_alloc_resources(dev, schppm_res_spec, sc->sc_res)) {
106 device_printf(dev, "failed to allocate resources\n");
107 bus_release_resources(dev, schppm_res_spe
[all...]
/freebsd-11-stable/sys/mips/cavium/
H A Docteon_rtc.c45 static int octeon_rtc_attach(device_t dev);
46 static int octeon_rtc_probe(device_t dev);
48 static int octeon_rtc_settime(device_t dev, struct timespec *ts);
49 static int octeon_rtc_gettime(device_t dev, struct timespec *ts);
72 octeon_rtc_probe(device_t dev) argument
76 if (device_get_unit(dev) != 0)
83 device_set_desc(dev, "Cavium Octeon Realtime Clock");
88 octeon_rtc_attach(device_t dev) argument
96 clock_register(dev, 1000000);
101 octeon_rtc_settime(device_t dev, struc argument
118 octeon_rtc_gettime(device_t dev, struct timespec *ts) argument
[all...]
/freebsd-11-stable/sys/x86/include/
H A Dlegacyvar.h49 int legacy_pcib_maxslots(device_t dev);
50 uint32_t legacy_pcib_read_config(device_t dev, u_int bus, u_int slot,
52 int legacy_pcib_read_ivar(device_t dev, device_t child, int which,
54 void legacy_pcib_write_config(device_t dev, u_int bus, u_int slot,
56 int legacy_pcib_write_ivar(device_t dev, device_t child, int which,
58 struct resource *legacy_pcib_alloc_resource(device_t dev, device_t child,
61 int legacy_pcib_adjust_resource(device_t dev, device_t child, int type,
63 int legacy_pcib_release_resource(device_t dev, device_t child, int type,
65 int legacy_pcib_alloc_msi(device_t pcib, device_t dev, int count,
67 int legacy_pcib_alloc_msix(device_t pcib, device_t dev, in
[all...]
/freebsd-11-stable/sys/dev/iicbus/
H A Dds1631.c47 #include <dev/iicbus/iicbus.h>
48 #include <dev/iicbus/iiconf.h>
50 #include <dev/ofw/openfirm.h>
51 #include <dev/ofw/ofw_bus.h>
95 static int ds1631_read_1(device_t dev, uint32_t addr, uint8_t reg,
97 static int ds1631_read_2(device_t dev, uint32_t addr, uint8_t reg,
99 static int ds1631_write(device_t dev, uint32_t addr, uint8_t reg,
120 ds1631_write(device_t dev, uint32_t addr, uint8_t reg, uint8_t *buff, int len) argument
136 if (iicbus_transfer(dev, msg, 1) == 0)
139 device_printf(dev, "iicbu
147 ds1631_read_1(device_t dev, uint32_t addr, uint8_t reg, uint8_t *data) argument
175 ds1631_read_2(device_t dev, uint32_t addr, uint8_t reg, uint16_t *data) argument
203 ds1631_probe(device_t dev) argument
228 ds1631_attach(device_t dev) argument
252 ds1631_init(device_t dev, uint32_t addr) argument
306 device_t dev = (device_t)xdev; local
398 device_t dev; local
[all...]
H A Disl12xx.c26 __FBSDID("$FreeBSD: stable/11/sys/dev/iicbus/isl12xx.c 331503 2018-03-24 23:01:10Z ian $");
51 #include <dev/ofw/ofw_bus.h>
52 #include <dev/ofw/ofw_bus_subr.h>
55 #include <dev/iicbus/iiconf.h>
56 #include <dev/iicbus/iicbus.h>
122 device_t dev; member in struct:isl12xx_softc
153 return (iicdev_readfrom(sc->dev, reg, data, 1, WAITFLAGS));
160 return (iicdev_writeto(sc->dev, reg, &val, 1, WAITFLAGS));
177 device_printf(sc->dev,
184 clock_register_flags(sc->dev, 100000
189 isl12xx_probe(device_t dev) argument
205 isl12xx_attach(device_t dev) argument
225 isl12xx_detach(device_t dev) argument
233 isl12xx_gettime(device_t dev, struct timespec *ts) argument
280 isl12xx_settime(device_t dev, struct timespec *ts) argument
[all...]
H A Dicee.c26 __FBSDID("$FreeBSD: stable/11/sys/dev/iicbus/icee.c 346548 2019-04-22 13:51:25Z ian $");
46 #include <dev/ofw/ofw_bus.h>
47 #include <dev/ofw/ofw_bus_subr.h>
50 #include <dev/iicbus/iiconf.h>
51 #include <dev/iicbus/iicbus.h>
65 device_t dev; /* Myself */ member in struct:icee_softc
111 #define CDEV2SOFTC(dev) ((dev)->si_drv1)
131 icee_probe(device_t dev) argument
135 if (!ofw_bus_status_okay(dev))
163 icee_probe(device_t dev) argument
185 icee_attach(device_t dev) argument
223 icee_detach(device_t dev) argument
232 icee_open(struct cdev *dev, int oflags, int devtype, struct thread *td) argument
244 icee_close(struct cdev *dev, int fflag, int devtype, struct thread *td) argument
254 icee_read(struct cdev *dev, struct uio *uio, int ioflag) argument
314 icee_write(struct cdev *dev, struct uio *uio, int ioflag) argument
[all...]
/freebsd-11-stable/sys/dev/sound/pci/
H A Dhdspe.c32 #include <dev/sound/pcm/sound.h>
33 #include <dev/sound/pci/hdspe.h>
34 #include <dev/sound/chip.h>
36 #include <dev/pci/pcireg.h>
37 #include <dev/pci/pcivar.h>
100 if ((err = device_get_children(sc->dev, &devlist, &devcount)) != 0)
121 device_printf(sc->dev, "hdspe_dmapsetmap()\n");
131 sc->cs = bus_alloc_resource_any(sc->dev, SYS_RES_MEMORY,
135 device_printf(sc->dev, "Unable to map SYS_RES_MEMORY.\n");
144 sc->irq = bus_alloc_resource_any(sc->dev, SYS_RES_IR
225 hdspe_probe(device_t dev) argument
284 hdspe_attach(device_t dev) argument
351 hdspe_detach(device_t dev) argument
[all...]
/freebsd-11-stable/sys/arm/nvidia/
H A Das3722.c46 #include <dev/extres/regulator/regulator.h>
47 #include <dev/fdt/fdt_pinctrl.h>
48 #include <dev/gpio/gpiobusvar.h>
49 #include <dev/iicbus/iiconf.h>
50 #include <dev/iicbus/iicbus.h>
51 #include <dev/ofw/ofw_bus.h>
52 #include <dev/ofw/ofw_bus_subr.h>
92 rv = iicbus_transfer(sc->dev, msgs, 2);
94 device_printf(sc->dev,
116 rv = iicbus_transfer(sc->dev, msg
271 as3722_probe(device_t dev) argument
285 as3722_attach(device_t dev) argument
351 as3722_detach(device_t dev) argument
366 as3722_gpio_get_node(device_t bus, device_t dev) argument
[all...]
H A Dtegra_mc.c47 #include <dev/extres/clk/clk.h>
48 #include <dev/ofw/ofw_bus.h>
49 #include <dev/ofw/ofw_bus_subr.h>
106 mtx_init(&_sc->mtx, device_get_nameunit(_sc->dev), "tegra_mc", MTX_DEF)
117 device_t dev; member in struct:tegra_mc_softc
153 device_printf(sc->dev, "Memory Controller Interrupt:\n");
196 tegra_mc_probe(device_t dev) argument
198 if (!ofw_bus_status_okay(dev))
201 if (ofw_bus_search_compatible(dev, compat_data)->ocd_data == 0)
203 device_set_desc(dev, "Tegr
208 tegra_mc_attach(device_t dev) argument
281 tegra_mc_detach(device_t dev) argument
[all...]
/freebsd-11-stable/sys/dev/mlx4/mlx4_core/
H A Dmlx4.h48 #include <dev/mlx4/device.h>
49 #include <dev/mlx4/driver.h>
50 #include <dev/mlx4/doorbell.h>
51 #include <dev/mlx4/cmd.h>
52 #include <dev/mlx4/mlx4_core/fw_qos.h>
204 int (*verify)(struct mlx4_dev *dev, int slave, struct mlx4_vhcr *vhcr,
206 int (*wrapper)(struct mlx4_dev *dev, int slave, struct mlx4_vhcr *vhcr,
222 &(mdev)->persist->pdev->dev, format, \
227 dev_err(&(mdev)->persist->pdev->dev, format, ##__VA_ARGS__)
229 dev_info(&(mdev)->persist->pdev->dev, forma
386 struct mlx4_dev *dev; member in struct:mlx4_eq
817 struct mlx4_dev *dev; member in struct:mlx4_port_info
831 struct mlx4_dev *dev; member in struct:mlx4_sense
859 struct mlx4_dev dev; member in struct:mlx4_priv
913 mlx4_priv(struct mlx4_dev *dev) argument
1375 mlx4_tlock(struct mlx4_dev *dev) argument
[all...]
/freebsd-11-stable/sys/dev/asmc/
H A Dasmc.c36 __FBSDID("$FreeBSD: stable/11/sys/dev/asmc/asmc.c 344889 2019-03-07 15:31:32Z dab $");
53 #include <contrib/dev/acpica/include/acpi.h>
55 #include <dev/acpica/acpivar.h>
56 #include <dev/asmc/asmcvar.h>
63 static int asmc_probe(device_t dev);
64 static int asmc_attach(device_t dev);
65 static int asmc_detach(device_t dev);
66 static int asmc_resume(device_t dev);
71 static int asmc_init(device_t dev);
72 static int asmc_command(device_t dev, uint8_
421 asmc_match(device_t dev) argument
442 asmc_probe(device_t dev) argument
462 asmc_attach(device_t dev) argument
676 asmc_detach(device_t dev) argument
698 asmc_resume(device_t dev) argument
709 asmc_dumpall(device_t dev) argument
720 asmc_init(device_t dev) argument
822 asmc_wait_ack(device_t dev, uint8_t val, int amount) argument
843 asmc_wait(device_t dev, uint8_t val) argument
865 asmc_command(device_t dev, uint8_t command) argument
885 asmc_key_read(device_t dev, const char *key, uint8_t *buf, uint8_t len) argument
925 asmc_key_dump(device_t dev, int number) argument
1018 asmc_key_write(device_t dev, const char *key, uint8_t *buf, uint8_t len) argument
1064 asmc_fan_count(device_t dev) argument
1075 asmc_fan_getvalue(device_t dev, const char *key, int fan) argument
1090 asmc_fan_getstring(device_t dev, const char *key, int fan, uint8_t *buf, uint8_t buflen) argument
1104 asmc_fan_setvalue(device_t dev, const char *key, int fan, int speed) argument
1124 device_t dev = (device_t) arg1; local
1139 device_t dev = (device_t) arg1; local
1155 device_t dev = (device_t) arg1; local
1170 device_t dev = (device_t) arg1; local
1189 device_t dev = (device_t) arg1; local
1208 device_t dev = (device_t) arg1; local
1228 asmc_temp_getvalue(device_t dev, const char *key) argument
1244 device_t dev = (device_t) arg1; local
1258 asmc_sms_read(device_t dev, const char *key, int16_t *val) argument
1282 asmc_sms_calibrate(device_t dev) argument
1295 device_t dev = (device_t) arg; local
1327 asmc_sms_printintr(device_t dev, uint8_t type) argument
1373 device_t dev = (device_t) arg1; local
1388 device_t dev = (device_t) arg1; local
1403 device_t dev = (device_t) arg1; local
1418 device_t dev = (device_t) arg1; local
1433 device_t dev = (device_t) arg1; local
1448 device_t dev = (device_t) arg1; local
[all...]
/freebsd-11-stable/sys/arm/at91/
H A Dat91_rtc.c73 device_t dev; /* Myself */ member in struct:at91_rtc_softc
95 mtx_init(&_sc->sc_mtx, device_get_nameunit(_sc->dev), \
105 static int at91_rtc_probe(device_t dev);
106 static int at91_rtc_attach(device_t dev);
107 static int at91_rtc_detach(device_t dev);
110 static int at91_rtc_activate(device_t dev);
111 static void at91_rtc_deactivate(device_t dev);
135 at91_rtc_probe(device_t dev) argument
137 device_set_desc(dev, "RTC");
142 at91_rtc_attach(device_t dev) argument
195 at91_rtc_detach(device_t dev) argument
201 at91_rtc_activate(device_t dev) argument
226 at91_rtc_deactivate(device_t dev) argument
256 at91_rtc_gettime(device_t dev, struct timespec *ts) argument
298 at91_rtc_settime(device_t dev, struct timespec *ts) argument
[all...]
/freebsd-11-stable/sys/powerpc/pseries/
H A Dxics.c46 #include <dev/ofw/ofw_bus.h>
47 #include <dev/ofw/ofw_bus_subr.h>
61 static void xicp_bind(device_t dev, u_int irq, cpuset_t cpumask);
131 xicp_probe(device_t dev) argument
133 if (ofw_bus_get_name(dev) == NULL || strcmp(ofw_bus_get_name(dev),
137 if (!ofw_bus_is_compatible(dev, "ibm,ppc-xicp"))
140 device_set_desc(dev, "PAPR virtual interrupt controller");
145 xics_probe(device_t dev) argument
147 if (ofw_bus_get_name(dev)
159 xicp_attach(device_t dev) argument
180 xics_attach(device_t dev) argument
196 xicp_bind(device_t dev, u_int irq, cpuset_t cpumask) argument
228 xicp_dispatch(device_t dev, struct trapframe *tf) argument
262 xicp_enable(device_t dev, u_int irq, u_int vector) argument
291 xicp_eoi(device_t dev, u_int irq) argument
303 xicp_ipi(device_t dev, u_int cpu) argument
310 xicp_mask(device_t dev, u_int irq) argument
322 xicp_unmask(device_t dev, u_int irq) argument
[all...]
/freebsd-11-stable/sys/dev/fe/
H A Dif_fe_pccard.c48 #include <dev/fe/mb86960.h>
49 #include <dev/fe/if_fereg.h>
50 #include <dev/fe/if_fevar.h>
52 #include <dev/pccard/pccardvar.h>
53 #include <dev/pccard/pccard_cis.h>
96 fe_pccard_probe(device_t dev) argument
103 if ((pp = (const struct fe_pccard_product *)pccard_product_lookup(dev,
107 device_set_desc(dev, pp->mpp_product.pp_name);
111 error = pccard_get_function(dev, &fcn);
118 if (pccard_select_cfe(dev,
154 fe_pccard_attach(device_t dev) argument
190 fe_pccard_detach(device_t dev) argument
230 fe_probe_mbh(device_t dev, const struct fe_pccard_product *pp) argument
320 fe_probe_tdk(device_t dev, const struct fe_pccard_product *pp) argument
[all...]
/freebsd-11-stable/sys/dev/uart/
H A Duart_dev_snps.c26 * $FreeBSD: stable/11/sys/dev/uart/uart_dev_snps.c 340145 2018-11-04 23:28:56Z mmacy $
30 __FBSDID("$FreeBSD: stable/11/sys/dev/uart/uart_dev_snps.c 340145 2018-11-04 23:28:56Z mmacy $");
39 #include <dev/uart/uart.h>
40 #include <dev/uart/uart_bus.h>
41 #include <dev/uart/uart_cpu_fdt.h>
42 #include <dev/uart/uart_dev_ns8250.h>
44 #include <dev/ofw/ofw_bus.h>
45 #include <dev/ofw/ofw_bus_subr.h>
48 #include <dev/extres/clk/clk.h>
49 #include <dev/extre
98 snps_get_clocks(device_t dev, clk_t *baudclk, clk_t *apb_pclk) argument
121 snps_probe(device_t dev) argument
210 snps_detach(device_t dev) argument
[all...]

Completed in 254 milliseconds

<<21222324252627282930>>