Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 1 | /* |
| 2 | * arch/arm/mach-ep93xx/include/mach/platform.h |
| 3 | */ |
| 4 | |
| 5 | #ifndef __ASSEMBLY__ |
| 6 | |
Hartley Sweeten | 6531a99 | 2009-10-08 00:45:00 +0100 | [diff] [blame^] | 7 | struct i2c_gpio_platform_data; |
Hartley Sweeten | ef449e6 | 2009-03-05 17:33:50 +0100 | [diff] [blame] | 8 | struct i2c_board_info; |
Hartley Sweeten | ef12379 | 2009-07-29 22:41:06 +0100 | [diff] [blame] | 9 | struct platform_device; |
Ryan Mallon | c601218 | 2009-09-22 16:47:09 -0700 | [diff] [blame] | 10 | struct ep93xxfb_mach_info; |
Hartley Sweeten | ef449e6 | 2009-03-05 17:33:50 +0100 | [diff] [blame] | 11 | |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 12 | struct ep93xx_eth_data |
| 13 | { |
| 14 | unsigned char dev_addr[6]; |
| 15 | unsigned char phy_id; |
| 16 | }; |
| 17 | |
Hartley Sweeten | a0a08fd | 2008-10-04 20:01:49 +0100 | [diff] [blame] | 18 | void ep93xx_map_io(void); |
| 19 | void ep93xx_init_irq(void); |
| 20 | void ep93xx_init_time(unsigned long); |
Hartley Sweeten | 02239f0 | 2009-07-08 02:00:49 +0100 | [diff] [blame] | 21 | |
| 22 | /* EP93xx System Controller software locked register write */ |
Ryan Mallon | fbeeea5 | 2009-07-15 21:51:59 +0100 | [diff] [blame] | 23 | void ep93xx_syscon_swlocked_write(unsigned int val, void __iomem *reg); |
Hartley Sweeten | 02239f0 | 2009-07-08 02:00:49 +0100 | [diff] [blame] | 24 | void ep93xx_devcfg_set_clear(unsigned int set_bits, unsigned int clear_bits); |
| 25 | |
| 26 | static inline void ep93xx_devcfg_set_bits(unsigned int bits) |
| 27 | { |
| 28 | ep93xx_devcfg_set_clear(bits, 0x00); |
| 29 | } |
| 30 | |
| 31 | static inline void ep93xx_devcfg_clear_bits(unsigned int bits) |
| 32 | { |
| 33 | ep93xx_devcfg_set_clear(0x00, bits); |
| 34 | } |
| 35 | |
Hartley Sweeten | a0a08fd | 2008-10-04 20:01:49 +0100 | [diff] [blame] | 36 | void ep93xx_register_eth(struct ep93xx_eth_data *data, int copy_addr); |
Hartley Sweeten | 6531a99 | 2009-10-08 00:45:00 +0100 | [diff] [blame^] | 37 | void ep93xx_register_i2c(struct i2c_gpio_platform_data *data, |
| 38 | struct i2c_board_info *devices, int num); |
Ryan Mallon | c601218 | 2009-09-22 16:47:09 -0700 | [diff] [blame] | 39 | void ep93xx_register_fb(struct ep93xxfb_mach_info *data); |
Hartley Sweeten | ef12379 | 2009-07-29 22:41:06 +0100 | [diff] [blame] | 40 | void ep93xx_register_pwm(int pwm0, int pwm1); |
| 41 | int ep93xx_pwm_acquire_gpio(struct platform_device *pdev); |
| 42 | void ep93xx_pwm_release_gpio(struct platform_device *pdev); |
Hartley Sweeten | 02239f0 | 2009-07-08 02:00:49 +0100 | [diff] [blame] | 43 | |
Hartley Sweeten | a0a08fd | 2008-10-04 20:01:49 +0100 | [diff] [blame] | 44 | void ep93xx_init_devices(void); |
| 45 | extern struct sys_timer ep93xx_timer; |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 46 | |
| 47 | #endif |