platform.h 1.1 KB

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