platform.h 490 B

1234567891011121314151617181920212223
  1. /*
  2. * arch/arm/mach-ep93xx/include/mach/platform.h
  3. */
  4. #ifndef __ASSEMBLY__
  5. struct i2c_board_info;
  6. struct ep93xx_eth_data
  7. {
  8. unsigned char dev_addr[6];
  9. unsigned char phy_id;
  10. };
  11. void ep93xx_map_io(void);
  12. void ep93xx_init_irq(void);
  13. void ep93xx_init_time(unsigned long);
  14. void ep93xx_register_eth(struct ep93xx_eth_data *data, int copy_addr);
  15. void ep93xx_register_i2c(struct i2c_board_info *devices, int num);
  16. void ep93xx_init_devices(void);
  17. extern struct sys_timer ep93xx_timer;
  18. #endif