core.h 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /*
  2. * linux/arch/arm/mach-realview/core.h
  3. *
  4. * Copyright (C) 2004 ARM Limited
  5. * Copyright (C) 2000 Deep Blue Solutions Ltd
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  20. */
  21. #ifndef __ASM_ARCH_REALVIEW_H
  22. #define __ASM_ARCH_REALVIEW_H
  23. #include <linux/amba/bus.h>
  24. #include <linux/io.h>
  25. #include <asm/setup.h>
  26. #include <asm/leds.h>
  27. #define APB_DEVICE(name, busid, base, plat) \
  28. static AMBA_APB_DEVICE(name, busid, 0, REALVIEW_##base##_BASE, base##_IRQ, plat)
  29. #define AHB_DEVICE(name, busid, base, plat) \
  30. static AMBA_AHB_DEVICE(name, busid, 0, REALVIEW_##base##_BASE, base##_IRQ, plat)
  31. struct machine_desc;
  32. extern struct platform_device realview_flash_device;
  33. extern struct platform_device realview_cf_device;
  34. extern struct platform_device realview_i2c_device;
  35. extern struct mmci_platform_data realview_mmc0_plat_data;
  36. extern struct mmci_platform_data realview_mmc1_plat_data;
  37. extern struct clcd_board clcd_plat_data;
  38. extern void __iomem *timer0_va_base;
  39. extern void __iomem *timer1_va_base;
  40. extern void __iomem *timer2_va_base;
  41. extern void __iomem *timer3_va_base;
  42. extern void realview_leds_event(led_event_t ledevt);
  43. extern void realview_timer_init(unsigned int timer_irq);
  44. extern int realview_flash_register(struct resource *res, u32 num);
  45. extern int realview_eth_register(const char *name, struct resource *res);
  46. extern int realview_usb_register(struct resource *res);
  47. extern void realview_init_early(void);
  48. extern void realview_fixup(struct tag *tags, char **from,
  49. struct meminfo *meminfo);
  50. #endif