blob: 3330b36d79e6a0838a88b0960db3ee436e0edc33 [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;
Mika Westerberg4fec9972010-05-11 15:34:54 +01009struct spi_board_info;
Hartley Sweetenef123792009-07-29 22:41:06 +010010struct platform_device;
Ryan Mallonc6012182009-09-22 16:47:09 -070011struct ep93xxfb_mach_info;
Hartley Sweeten12f56c62009-10-28 21:04:46 +010012struct ep93xx_keypad_platform_data;
Mika Westerberg4fec9972010-05-11 15:34:54 +010013struct ep93xx_spi_info;
Hartley Sweetenef449e62009-03-05 17:33:50 +010014
Russell Kinga09e64f2008-08-05 16:14:15 +010015struct ep93xx_eth_data
16{
17 unsigned char dev_addr[6];
18 unsigned char phy_id;
19};
20
Hartley Sweetena0a08fd2008-10-04 20:01:49 +010021void ep93xx_map_io(void);
22void ep93xx_init_irq(void);
Hartley Sweeten02239f02009-07-08 02:00:49 +010023
24/* EP93xx System Controller software locked register write */
Ryan Mallonfbeeea52009-07-15 21:51:59 +010025void ep93xx_syscon_swlocked_write(unsigned int val, void __iomem *reg);
Hartley Sweeten02239f02009-07-08 02:00:49 +010026void ep93xx_devcfg_set_clear(unsigned int set_bits, unsigned int clear_bits);
27
28static inline void ep93xx_devcfg_set_bits(unsigned int bits)
29{
30 ep93xx_devcfg_set_clear(bits, 0x00);
31}
32
33static inline void ep93xx_devcfg_clear_bits(unsigned int bits)
34{
35 ep93xx_devcfg_set_clear(0x00, bits);
36}
37
Mika Westerberg99e6a232010-03-27 12:05:14 +010038#define EP93XX_CHIP_REV_D0 3
39#define EP93XX_CHIP_REV_D1 4
40#define EP93XX_CHIP_REV_E0 5
41#define EP93XX_CHIP_REV_E1 6
42#define EP93XX_CHIP_REV_E2 7
43
44unsigned int ep93xx_chip_revision(void);
45
Hartley Sweeten16bcf782010-06-10 16:19:08 +010046void ep93xx_register_flash(unsigned int width,
47 resource_size_t start, resource_size_t size);
48
Hartley Sweetena0a08fd2008-10-04 20:01:49 +010049void ep93xx_register_eth(struct ep93xx_eth_data *data, int copy_addr);
Hartley Sweeten6531a992009-10-08 00:45:00 +010050void ep93xx_register_i2c(struct i2c_gpio_platform_data *data,
51 struct i2c_board_info *devices, int num);
Mika Westerberg4fec9972010-05-11 15:34:54 +010052void ep93xx_register_spi(struct ep93xx_spi_info *info,
53 struct spi_board_info *devices, int num);
Ryan Mallonc6012182009-09-22 16:47:09 -070054void ep93xx_register_fb(struct ep93xxfb_mach_info *data);
Hartley Sweetenef123792009-07-29 22:41:06 +010055void ep93xx_register_pwm(int pwm0, int pwm1);
56int ep93xx_pwm_acquire_gpio(struct platform_device *pdev);
57void ep93xx_pwm_release_gpio(struct platform_device *pdev);
Hartley Sweeten12f56c62009-10-28 21:04:46 +010058void ep93xx_register_keypad(struct ep93xx_keypad_platform_data *data);
59int ep93xx_keypad_acquire_gpio(struct platform_device *pdev);
60void ep93xx_keypad_release_gpio(struct platform_device *pdev);
Ryan Malloned67ea82010-06-08 22:01:10 +120061void ep93xx_register_i2s(void);
62int ep93xx_i2s_acquire(unsigned i2s_pins, unsigned i2s_config);
63void ep93xx_i2s_release(void);
Hartley Sweeten02239f02009-07-08 02:00:49 +010064
Hartley Sweetena0a08fd2008-10-04 20:01:49 +010065void ep93xx_init_devices(void);
66extern struct sys_timer ep93xx_timer;
Russell Kinga09e64f2008-08-05 16:14:15 +010067
68#endif