Home | History | Annotate | Download | only in iq80310

Lines Matching refs:oba

134 	struct obio_attach_args *oba = aux;
136 aprint_normal(" addr 0x%08lx", oba->oba_addr);
137 if (oba->oba_size != OBIOCF_SIZE_DEFAULT)
138 aprint_normal("-0x%08lx", oba->oba_addr + (oba->oba_size - 1));
139 if (oba->oba_width != OBIOCF_WIDTH_DEFAULT)
140 aprint_normal(" width %d", oba->oba_width);
141 if (oba->oba_irq != -1)
142 aprint_normal(" xint3 %d", IRQ_XINT3(oba->oba_irq));
150 struct obio_attach_args oba;
152 oba.oba_st = &obio_bs_tag;
153 oba.oba_addr = cf->cf_loc[OBIOCF_ADDR];
154 oba.oba_size = cf->cf_loc[OBIOCF_SIZE];
155 oba.oba_width = cf->cf_loc[OBIOCF_WIDTH];
157 oba.oba_irq = XINT3_IRQ(cf->cf_loc[OBIOCF_XINT3]);
159 oba.oba_irq = -1;
161 if (config_probe(parent, cf, &oba))
162 config_attach(parent, cf, &oba, obio_print, CFARGS_NONE);