platform.h 915 字节
Newer Older
1
/*
2
 * arch/arm/mach-ep93xx/include/mach/platform.h
3 4 5 6
 */

#ifndef __ASSEMBLY__

7 8
struct i2c_board_info;

9 10 11 12 13 14
struct ep93xx_eth_data
{
	unsigned char	dev_addr[6];
	unsigned char	phy_id;
};

15 16 17
void ep93xx_map_io(void);
void ep93xx_init_irq(void);
void ep93xx_init_time(unsigned long);
18 19

/* EP93xx System Controller software locked register write */
20
void ep93xx_syscon_swlocked_write(unsigned int val, void __iomem *reg);
21 22 23 24 25 26 27 28 29 30 31 32
void ep93xx_devcfg_set_clear(unsigned int set_bits, unsigned int clear_bits);

static inline void ep93xx_devcfg_set_bits(unsigned int bits)
{
	ep93xx_devcfg_set_clear(bits, 0x00);
}

static inline void ep93xx_devcfg_clear_bits(unsigned int bits)
{
	ep93xx_devcfg_set_clear(0x00, bits);
}

33
void ep93xx_register_eth(struct ep93xx_eth_data *data, int copy_addr);
34
void ep93xx_register_i2c(struct i2c_board_info *devices, int num);
35

36 37
void ep93xx_init_devices(void);
extern struct sys_timer ep93xx_timer;
38 39

#endif