OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:iopin
(Results
1 - 2
of
2
) sorted by null
/external/u-boot/arch/powerpc/include/asm/
iopin_8xx.h
28
static inline void iopin_set_high(iopin_t *
iopin
)
32
if (
iopin
->port == IOPIN_PORTA) {
35
setbits_be16(datp, 1 << (15 -
iopin
->pin));
36
} else if (
iopin
->port == IOPIN_PORTB) {
39
setbits_be32(datp, 1 << (31 -
iopin
->pin));
40
} else if (
iopin
->port == IOPIN_PORTC) {
43
setbits_be16(datp, 1 << (15 -
iopin
->pin));
44
} else if (
iopin
->port == IOPIN_PORTD) {
47
setbits_be16(datp, 1 << (15 -
iopin
->pin));
51
static inline void iopin_set_low(iopin_t *
iopin
)
[
all
...]
/external/u-boot/arch/powerpc/cpu/mpc8xx/
immap.c
178
iopin_t
iopin
;
local
237
iopin
.port = port;
238
iopin
.pin = pin;
239
iopin
.flag = 0;
243
iopin_set_out(&
iopin
);
245
iopin_set_in(&
iopin
);
249
iopin_set_ded(&
iopin
);
251
iopin_set_gen(&
iopin
);
255
iopin_set_opt2(&
iopin
);
257
iopin_set_opt1(&
iopin
);
[
all
...]
Completed in 330 milliseconds