sycamore.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*
  2. * Sycamore board definitions
  3. *
  4. * Copyright (c) 2005 DENX Software Engineering
  5. * Stefan Roese <sr@denx.de>
  6. *
  7. * Based on original work by
  8. * Armin Kuster <akuster@mvista.com>
  9. * 2000 (c) MontaVista, Software, Inc.
  10. *
  11. * This program is free software; you can redistribute it and/or modify it
  12. * under the terms of the GNU General Public License as published by the
  13. * Free Software Foundation; either version 2 of the License, or (at your
  14. * option) any later version.
  15. *
  16. */
  17. #ifdef __KERNEL__
  18. #ifndef __ASM_SYCAMORE_H__
  19. #define __ASM_SYCAMORE_H__
  20. #include <linux/config.h>
  21. #include <platforms/4xx/ibm405gpr.h>
  22. #include <asm/ppcboot.h>
  23. /* Memory map for the IBM "Sycamore" 405GPr evaluation board.
  24. * Generic 4xx plus RTC.
  25. */
  26. #define SYCAMORE_RTC_PADDR ((uint)0xf0000000)
  27. #define SYCAMORE_RTC_VADDR SYCAMORE_RTC_PADDR
  28. #define SYCAMORE_RTC_SIZE ((uint)8*1024)
  29. #define BASE_BAUD 691200
  30. #define SYCAMORE_PS2_BASE 0xF0100000
  31. /* Flash */
  32. #define PPC40x_FPGA_BASE 0xF0300000
  33. #define PPC40x_FPGA_REG_OFFS 5 /* offset to flash map reg */
  34. #define PPC40x_FLASH_ONBD_N(x) (x & 0x02)
  35. #define PPC40x_FLASH_SRAM_SEL(x) (x & 0x01)
  36. #define PPC40x_FLASH_LOW 0xFFF00000
  37. #define PPC40x_FLASH_HIGH 0xFFF80000
  38. #define PPC40x_FLASH_SIZE 0x80000
  39. #define PPC4xx_MACHINE_NAME "IBM Sycamore"
  40. #endif /* __ASM_SYCAMORE_H__ */
  41. #endif /* __KERNEL__ */