pcm027.h 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. /*
  2. * arch/arm/mach-pxa/include/mach/pcm027.h
  3. *
  4. * (c) 2003 Phytec Messtechnik GmbH <armlinux@phytec.de>
  5. * (c) 2007 Juergen Beisert <j.beisert@pengutronix.de>
  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. /*
  22. * Definitions of CPU card resources only
  23. */
  24. #include <mach/irqs.h> /* PXA_GPIO_TO_IRQ */
  25. /* phyCORE-PXA270 (PCM027) Interrupts */
  26. #define PCM027_IRQ(x) (IRQ_BOARD_START + (x))
  27. #define PCM027_BTDET_IRQ PCM027_IRQ(0)
  28. #define PCM027_FF_RI_IRQ PCM027_IRQ(1)
  29. #define PCM027_MMCDET_IRQ PCM027_IRQ(2)
  30. #define PCM027_PM_5V_IRQ PCM027_IRQ(3)
  31. #define PCM027_NR_IRQS (IRQ_BOARD_START + 32)
  32. /* I2C RTC */
  33. #define PCM027_RTC_IRQ_GPIO 0
  34. #define PCM027_RTC_IRQ PXA_GPIO_TO_IRQ(PCM027_RTC_IRQ_GPIO)
  35. #define PCM027_RTC_IRQ_EDGE IRQ_TYPE_EDGE_FALLING
  36. #define ADR_PCM027_RTC 0x51 /* I2C address */
  37. /* I2C EEPROM */
  38. #define ADR_PCM027_EEPROM 0x54 /* I2C address */
  39. /* Ethernet chip (SMSC91C111) */
  40. #define PCM027_ETH_IRQ_GPIO 52
  41. #define PCM027_ETH_IRQ PXA_GPIO_TO_IRQ(PCM027_ETH_IRQ_GPIO)
  42. #define PCM027_ETH_IRQ_EDGE IRQ_TYPE_EDGE_RISING
  43. #define PCM027_ETH_PHYS PXA_CS5_PHYS
  44. #define PCM027_ETH_SIZE (1*1024*1024)
  45. /* CAN controller SJA1000 (unsupported yet) */
  46. #define PCM027_CAN_IRQ_GPIO 114
  47. #define PCM027_CAN_IRQ PXA_GPIO_TO_IRQ(PCM027_CAN_IRQ_GPIO)
  48. #define PCM027_CAN_IRQ_EDGE IRQ_TYPE_EDGE_FALLING
  49. #define PCM027_CAN_PHYS 0x22000000
  50. #define PCM027_CAN_SIZE 0x100
  51. /* SPI GPIO expander (unsupported yet) */
  52. #define PCM027_EGPIO_IRQ_GPIO 27
  53. #define PCM027_EGPIO_IRQ PXA_GPIO_TO_IRQ(PCM027_EGPIO_IRQ_GPIO)
  54. #define PCM027_EGPIO_IRQ_EDGE IRQ_TYPE_EDGE_FALLING
  55. #define PCM027_EGPIO_CS 24
  56. /*
  57. * TODO: Switch this pin from dedicated usage to GPIO if
  58. * more than the MAX7301 device is connected to this SPI bus
  59. */
  60. #define PCM027_EGPIO_CS_MODE GPIO24_SFRM_MD
  61. /* Flash memory */
  62. #define PCM027_FLASH_PHYS 0x00000000
  63. #define PCM027_FLASH_SIZE 0x02000000
  64. /* onboard LEDs connected to GPIO */
  65. #define PCM027_LED_CPU 90
  66. #define PCM027_LED_HEARD_BEAT 91
  67. /*
  68. * This CPU module needs a baseboard to work. After basic initializing
  69. * its own devices, it calls baseboard's init function.
  70. * TODO: Add your own basebaord init function and call it from
  71. * inside pcm027_init(). This example here is for the developmen board.
  72. * Refer pcm990-baseboard.c
  73. */
  74. extern void pcm990_baseboard_init(void);