OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SMC_outw
(Results
1 - 3
of
3
) sorted by null
/external/u-boot/drivers/net/
smc91111.c
177
static inline void
SMC_outw
(struct eth_device *dev, word value, dword offset)
222
SMC_outw
(dev, *p++, offset);
299
SMC_outw
(dev, RCR_SOFTRST, RCR_REG);
307
SMC_outw
(dev, CONFIG_DEFAULT | CONFIG_EXT_PHY, CONFIG_REG);
309
SMC_outw
(dev, CONFIG_DEFAULT, CONFIG_REG);
315
SMC_outw
(dev, SMC_inw (dev, CONFIG_REG) | CONFIG_EPH_POWER_EN,
324
SMC_outw
(dev, RCR_CLEAR, RCR_REG);
325
SMC_outw
(dev, TCR_CLEAR, TCR_REG);
329
SMC_outw
(dev, CTL_DEFAULT, CTL_REG);
334
SMC_outw
(dev, MC_RESET, MMU_CMD_REG)
[
all
...]
lan91c96.h
74
#define
SMC_outw
(edev, d, r) (*((volatile word *)SMCREG(edev, r)) = d)
79
SMC_outw
(edev, __w, (r)&~1); \
95
SMC_outw
(edev, *(__b2 + __i),\
140
#define
SMC_outw
(edev, d, r) (*((volatile word *)((edev)->iobase+(r))) = d)
145
SMC_outw
(edev, __w, (r)&~1); \
151
SMC_outw
(edev, *(__b2 + __i),\
584
#define SMC_SELECT_BANK(edev, x) {
SMC_outw
(edev, x, LAN91C96_BANK_SELECT); }
smc91111.h
92
#define
SMC_outw
(a,d,r) (*((volatile word *)((a)->iobase+(r<<1))) = d)
95
#define
SMC_outw
(a,d,r) (*((volatile word *)((a)->iobase+(r))) = d)
102
SMC_outw
((a),__w,(r)&~1); \
117
SMC_outw
((a), *(__b2 + __i), r); \
171
#define
SMC_outw
(a,d,r) (*(volatile word *)((a)->iobase+((r)<<0))=SMC_LEON_SWAP16(d))
177
SMC_outw
((a),__w,(r)&~1); \
228
#define
SMC_outw
(a, d, r) (*((volatile word *)((a)->iobase+(r))) = d)
235
SMC_outw
((a), __w, ((r)&(~1))); \
242
SMC_outw
(a, SWAB7206(*__b2), r); \
263
#define
SMC_outw
(a,d,r) (*((volatile word *)((a)->iobase+((r)<<1))) = d
[
all
...]
Completed in 484 milliseconds