platform.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*
  2. * arch/arm/mach-ep93xx/include/mach/platform.h
  3. */
  4. #ifndef __ASSEMBLY__
  5. struct i2c_gpio_platform_data;
  6. struct i2c_board_info;
  7. struct platform_device;
  8. struct ep93xxfb_mach_info;
  9. struct ep93xx_keypad_platform_data;
  10. struct ep93xx_eth_data
  11. {
  12. unsigned char dev_addr[6];
  13. unsigned char phy_id;
  14. };
  15. void ep93xx_map_io(void);
  16. void ep93xx_init_irq(void);
  17. /* EP93xx System Controller software locked register write */
  18. void ep93xx_syscon_swlocked_write(unsigned int val, void __iomem *reg);
  19. void ep93xx_devcfg_set_clear(unsigned int set_bits, unsigned int clear_bits);
  20. static inline void ep93xx_devcfg_set_bits(unsigned int bits)
  21. {
  22. ep93xx_devcfg_set_clear(bits, 0x00);
  23. }
  24. static inline void ep93xx_devcfg_clear_bits(unsigned int bits)
  25. {
  26. ep93xx_devcfg_set_clear(0x00, bits);
  27. }
  28. void ep93xx_register_eth(struct ep93xx_eth_data *data, int copy_addr);
  29. void ep93xx_register_i2c(struct i2c_gpio_platform_data *data,
  30. struct i2c_board_info *devices, int num);
  31. void ep93xx_register_fb(struct ep93xxfb_mach_info *data);
  32. void ep93xx_register_pwm(int pwm0, int pwm1);
  33. int ep93xx_pwm_acquire_gpio(struct platform_device *pdev);
  34. void ep93xx_pwm_release_gpio(struct platform_device *pdev);
  35. void ep93xx_register_keypad(struct ep93xx_keypad_platform_data *data);
  36. int ep93xx_keypad_acquire_gpio(struct platform_device *pdev);
  37. void ep93xx_keypad_release_gpio(struct platform_device *pdev);
  38. void ep93xx_init_devices(void);
  39. extern struct sys_timer ep93xx_timer;
  40. #endif