platform.h 359 B

123456789101112131415161718192021
  1. /*
  2. * linux/include/asm-arm/arch-ep93xx/platform.h
  3. */
  4. #ifndef __ASSEMBLY__
  5. void ep93xx_map_io(void);
  6. void ep93xx_init_irq(void);
  7. void ep93xx_init_time(unsigned long);
  8. void ep93xx_init_devices(void);
  9. void ep93xx_clock_init(void);
  10. extern struct sys_timer ep93xx_timer;
  11. struct ep93xx_eth_data
  12. {
  13. unsigned char dev_addr[6];
  14. unsigned char phy_id;
  15. };
  16. #endif