ep93xx video driver platform support
[firewire-audio.git] / arch / arm / mach-ep93xx / include / mach / platform.h
blob01a0f0838e5b3d012a1c7aa1e94e4a70011464ae
1 /*
2 * arch/arm/mach-ep93xx/include/mach/platform.h
3 */
5 #ifndef __ASSEMBLY__
7 struct i2c_board_info;
8 struct platform_device;
9 struct ep93xxfb_mach_info;
11 struct ep93xx_eth_data
13 unsigned char dev_addr[6];
14 unsigned char phy_id;
17 void ep93xx_map_io(void);
18 void ep93xx_init_irq(void);
19 void ep93xx_init_time(unsigned long);
21 /* EP93xx System Controller software locked register write */
22 void ep93xx_syscon_swlocked_write(unsigned int val, void __iomem *reg);
23 void ep93xx_devcfg_set_clear(unsigned int set_bits, unsigned int clear_bits);
25 static inline void ep93xx_devcfg_set_bits(unsigned int bits)
27 ep93xx_devcfg_set_clear(bits, 0x00);
30 static inline void ep93xx_devcfg_clear_bits(unsigned int bits)
32 ep93xx_devcfg_set_clear(0x00, bits);
35 void ep93xx_register_eth(struct ep93xx_eth_data *data, int copy_addr);
36 void ep93xx_register_i2c(struct i2c_board_info *devices, int num);
37 void ep93xx_register_fb(struct ep93xxfb_mach_info *data);
38 void ep93xx_register_pwm(int pwm0, int pwm1);
39 int ep93xx_pwm_acquire_gpio(struct platform_device *pdev);
40 void ep93xx_pwm_release_gpio(struct platform_device *pdev);
42 void ep93xx_init_devices(void);
43 extern struct sys_timer ep93xx_timer;
45 #endif