HomeSort by: relevance | last modified time | path
    Searched defs:pxa (Results 1 - 25 of 28) sorted by relevancy

1 2

  /src/sys/arch/hpcarm/dev/
nbp_slhci.c 63 struct pxaip_attach_args *pxa = aux; local in function:nbp_slhci_match
65 if (strcmp(pxa->pxa_name, match->cf_name) != 0 ||
77 struct pxaip_attach_args *pxa = aux; local in function:nbp_slhci_attach
86 if (bus_space_map(pxa->pxa_iot, pxa->pxa_addr,
92 slhci_preinit(sc, nbp_slhci_power, pxa->pxa_iot, ioh, 0,
nbpmci.c 61 struct pxaip_attach_args *pxa = aux; local in function:pxamci_match
63 if (strcmp(pxa->pxa_name, match->cf_name) != 0 ||
67 pxa->pxa_size = PXA2X0_MMC_SIZE;
77 struct pxaip_attach_args *pxa = aux; local in function:pxamci_attach
96 if (pxamci_attach_sub(self, pxa))
nbppcic.c 77 struct pxaip_attach_args *pxa = aux; local in function:nbppcic_match
79 if (strcmp(pxa->pxa_name, match->cf_name) != 0 ||
90 struct pxaip_attach_args *pxa = aux; local in function:nbppcic_attach
93 sc->sc_iot = pxa->pxa_iot;
epsonlcd.c 89 struct pxaip_attach_args *pxa = aux; local in function:epsonlcd_match
91 if (strcmp(pxa->pxa_name, match->cf_name) != 0 ||
103 struct pxaip_attach_args *pxa = aux; local in function:epsonlcd_attach
111 sc->sc_iot = pxa->pxa_iot;
112 sc->sc_fbt = pxa->pxa_iot;
115 sc->sc_fbaddr = pxa->pxa_addr + 0x200000;
117 if (bus_space_map(sc->sc_iot, pxa->pxa_addr, 0x2000, 0, &sc->sc_fbh) != 0) {
wzero3_mci.c 148 struct pxaip_attach_args *pxa = aux; local in function:pxamci_attach
181 if (pxamci_attach_sub(self, pxa)) {
wzero3_usb.c 142 struct pxaip_attach_args *pxa = aux; local in function:wzero3usb_attach
146 sc->sc_iot = pxa->pxa_iot;
nbpiic.c 78 struct pxaip_attach_args *pxa = aux; local in function:pxaiic_match
80 if (strcmp(pxa->pxa_name, match->cf_name) != 0 ||
84 pxa->pxa_size = PXA2X0_I2C_SIZE;
93 struct pxaip_attach_args *pxa = aux; local in function:pxaiic_attach
100 sc->sc_pxa_i2c.sc_iot = pxa->pxa_iot;
101 sc->sc_pxa_i2c.sc_addr = pxa->pxa_addr;
102 sc->sc_pxa_i2c.sc_size = pxa->pxa_size;
106 aprint_error_dev(self, "unable to attach PXA I2C\n");
117 ih = pxa2x0_intr_establish(pxa->pxa_intr, IPL_HIGH, nbpiic_intr, sc);
wzero3_kbd.c 263 struct pxaip_attach_args *pxa = (struct pxaip_attach_args *)aux; local in function:wzero3kbd_attach
284 sc->sc_iot = pxa->pxa_iot;
  /src/sys/arch/arm/xscale/
pxa2x0_com.c 74 struct pxaip_attach_args *pxa = aux; local in function:pxauart_match
81 switch (pxa->pxa_addr) {
83 if (pxa->pxa_intr != PXA2X0_INT_FFUART)
90 if (pxa->pxa_intr != PXA2X0_INT_STUART)
97 if (pxa->pxa_intr != PXA2X0_INT_BTUART)
104 if (pxa->pxa_intr != PXA2X0_INT_HWUART)
121 pxa->pxa_size = 0x20;
123 if (com_is_console(bt, pxa->pxa_addr, NULL))
126 if (bus_space_map(bt, pxa->pxa_addr, pxa->pxa_size, 0, &bh)
142 struct pxaip_attach_args *pxa = aux; local in function:pxauart_attach
    [all...]
pxa2x0_udc.c 55 struct pxaip_attach_args *pxa = aux; local in function:pxaudc_match
57 if (CPU_IS_PXA270 && strcmp(pxa->pxa_name, cf->cf_name) == 0) {
58 pxa->pxa_size = PXA270_USBDC_SIZE;
68 struct pxaip_attach_args *pxa = (struct pxaip_attach_args *)aux; local in function:pxaudc_attach
71 sc->sc_iot = pxa->pxa_iot;
78 if (bus_space_map(sc->sc_iot, pxa->pxa_addr, pxa->pxa_size, 0,
83 sc->sc_size = pxa->pxa_size;
pxa2x0_ohci.c 59 struct pxaip_attach_args *pxa = aux; local in function:pxaohci_match
61 if (CPU_IS_PXA270 && strcmp(pxa->pxa_name, cf->cf_name) == 0) {
62 pxa->pxa_size = PXA2X0_USBHC_SIZE;
72 struct pxaip_attach_args *pxa = aux; local in function:pxaohci_attach
81 sc->sc.iot = pxa->pxa_iot;
82 sc->sc.sc_bus.ub_dmatag = pxa->pxa_dmat;
92 if (bus_space_map(sc->sc.iot, pxa->pxa_addr, pxa->pxa_size, 0,
97 sc->sc.sc_size = pxa->pxa_size;
pxa2x0_rtc.c 72 struct pxaip_attach_args *pxa = aux; local in function:pxartc_match
74 if (strcmp(pxa->pxa_name, cf->cf_name) != 0)
77 if (pxa->pxa_size == 0) {
78 pxa->pxa_size =
88 struct pxaip_attach_args *pxa = aux; local in function:pxartc_attach
91 sc->sc_iot = pxa->pxa_iot;
95 if (bus_space_map(sc->sc_iot, pxa->pxa_addr, pxa->pxa_size, 0,
104 if (pxa->pxa_size == PXA270_RTC_SIZE) {
pxa2x0_intr.c 105 struct pxaip_attach_args *pxa = aux; local in function:pxaintc_match
107 if (pxaintc_attached || pxa->pxa_addr != PXA2X0_INTCTL_BASE)
  /src/sys/arch/evbarm/gumstix/
gxmci.c 70 struct pxaip_attach_args *pxa = aux; local in function:pxamci_match
80 if (strcmp(pxa->pxa_name, match->cf_name) != 0)
95 pxa->pxa_size = PXA2X0_MMC_SIZE;
104 struct pxaip_attach_args *pxa = aux; local in function:pxamci_attach
113 if (pxamci_attach_sub(self, pxa)) {
gxiic.c 68 struct pxaip_attach_args *pxa = aux; local in function:gxiicmatch
70 if (strcmp(pxa->pxa_name, match->cf_name) != 0)
73 pxa->pxa_size = PXA2X0_I2C_SIZE;
81 struct pxaip_attach_args *pxa = aux; local in function:gxiicattach
88 sc->sc_pxa_i2c.sc_iot = pxa->pxa_iot;
89 sc->sc_pxa_i2c.sc_addr = pxa->pxa_addr;
90 sc->sc_pxa_i2c.sc_size = pxa->pxa_size;
93 aprint_error_dev(self, "unable to attach PXA I2C\n");
gxlcd.c 143 struct pxaip_attach_args *pxa = aux; local in function:gxlcd_match
145 if (strcmp(pxa->pxa_name, match->cf_name) != 0)
148 pxa->pxa_size = PXA2X0_LCDC_SIZE;
gxpcic.c 128 struct pxaip_attach_args *pxa = aux; local in function:gxpcic_match
133 if (strcmp(pxa->pxa_name, match->cf_name) != 0)
159 struct pxaip_attach_args *pxa = aux; local in function:gxpcic_attach
163 sc->sc_iot = pxa->pxa_iot;
gxio.c 187 struct pxaip_attach_args *pxa = aux; local in function:gxiomatch
191 if (strcmp(pxa->pxa_name, match->cf_name) != 0 ||
192 pxa->pxa_addr != PXAIPCF_ADDR_DEFAULT)
  /src/sys/arch/zaurus/dev/
zmci.c 92 struct pxaip_attach_args *pxa = aux; local in function:pxamci_attach
127 if (pxamci_attach_sub(self, pxa)) {
zusb.c 87 struct pxaip_attach_args *pxa = aux; local in function:zusb_attach
93 sc->sc_iot = pxa->pxa_iot;
w100lcd.c 136 struct pxaip_attach_args *pxa = (struct pxaip_attach_args *)aux; local in function:w100lcd_attach
141 w100_attach_subr(sc, pxa->pxa_iot, &lcd_panel_geometry_c700);
ziic.c 77 struct pxaip_attach_args *pxa = aux; local in function:pxaiic_match
79 if (strcmp(cf->cf_name, pxa->pxa_name))
82 pxa->pxa_addr = PXA2X0_I2C_BASE;
83 pxa->pxa_size = PXA2X0_I2C_SIZE;
92 struct pxaip_attach_args *pxa = aux; local in function:pxaiic_attach
98 psc->sc_iot = pxa->pxa_iot;
99 psc->sc_addr = pxa->pxa_addr;
100 psc->sc_size = pxa->pxa_size;
103 aprint_error_dev(self, "unable to attach PXA I2C controller\n");
scoop_pcic.c 73 struct pxaip_attach_args *pxa = (struct pxaip_attach_args *)aux; local in function:scoop_pcic_attach
76 sc->sc_iot = pxa->pxa_iot;
scoop.c 88 struct pxaip_attach_args *pxa = aux; local in function:scoopattach
93 sc->sc_iot = pxa->pxa_iot;
98 if (pxa->pxa_addr != -1)
99 addr = pxa->pxa_addr;
105 size = pxa->pxa_size < SCOOP_SIZE ? SCOOP_SIZE : pxa->pxa_size;
  /src/sys/arch/evbarm/g42xxeb/
g42xxeb_mci.c 125 struct pxaip_attach_args pxa; local in function:pxamci_attach
153 pxa.pxa_iot = iot; /* actually, here we want I/O tag for
159 pxa.pxa_addr = PXA2X0_MMC_BASE;
160 pxa.pxa_size = PXA2X0_MMC_SIZE;
161 pxa.pxa_intr = PXA2X0_INT_MMC;
167 if (pxamci_attach_sub(self, &pxa)) {

Completed in 27 milliseconds

1 2