blob: a3ec33fd79d43acbde7bb7bfd5a419c0169ed8d0 [file] [log] [blame]
Russell Kinga09e64f2008-08-05 16:14:15 +01001/*
2 * arch/arm/mach-ep93xx/include/mach/platform.h
3 */
4
5#ifndef __ASSEMBLY__
6
Hartley Sweeten6531a992009-10-08 00:45:00 +01007struct i2c_gpio_platform_data;
Hartley Sweetenef449e62009-03-05 17:33:50 +01008struct i2c_board_info;
Hartley Sweetenef123792009-07-29 22:41:06 +01009struct platform_device;
Ryan Mallonc6012182009-09-22 16:47:09 -070010struct ep93xxfb_mach_info;
Hartley Sweetenef449e62009-03-05 17:33:50 +010011
Russell Kinga09e64f2008-08-05 16:14:15 +010012struct ep93xx_eth_data
13{
14 unsigned char dev_addr[6];
15 unsigned char phy_id;
16};
17
Hartley Sweetena0a08fd2008-10-04 20:01:49 +010018void ep93xx_map_io(void);
19void ep93xx_init_irq(void);
20void ep93xx_init_time(unsigned long);
Hartley Sweeten02239f02009-07-08 02:00:49 +010021
22/* EP93xx System Controller software locked register write */
Ryan Mallonfbeeea52009-07-15 21:51:59 +010023void ep93xx_syscon_swlocked_write(unsigned int val, void __iomem *reg);
Hartley Sweeten02239f02009-07-08 02:00:49 +010024void ep93xx_devcfg_set_clear(unsigned int set_bits, unsigned int clear_bits);
25
26static inline void ep93xx_devcfg_set_bits(unsigned int bits)
27{
28 ep93xx_devcfg_set_clear(bits, 0x00);
29}
30
31static inline void ep93xx_devcfg_clear_bits(unsigned int bits)
32{
33 ep93xx_devcfg_set_clear(0x00, bits);
34}
35
Hartley Sweetena0a08fd2008-10-04 20:01:49 +010036void ep93xx_register_eth(struct ep93xx_eth_data *data, int copy_addr);
Hartley Sweeten6531a992009-10-08 00:45:00 +010037void ep93xx_register_i2c(struct i2c_gpio_platform_data *data,
38 struct i2c_board_info *devices, int num);
Ryan Mallonc6012182009-09-22 16:47:09 -070039void ep93xx_register_fb(struct ep93xxfb_mach_info *data);
Hartley Sweetenef123792009-07-29 22:41:06 +010040void ep93xx_register_pwm(int pwm0, int pwm1);
41int ep93xx_pwm_acquire_gpio(struct platform_device *pdev);
42void ep93xx_pwm_release_gpio(struct platform_device *pdev);
Hartley Sweeten02239f02009-07-08 02:00:49 +010043
Hartley Sweetena0a08fd2008-10-04 20:01:49 +010044void ep93xx_init_devices(void);
45extern struct sys_timer ep93xx_timer;
Russell Kinga09e64f2008-08-05 16:14:15 +010046
47#endif