taihu.c 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. /*
  2. * (C) Copyright 2000-2005
  3. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  4. *
  5. * (C) Copyright 2005-2007
  6. * Beijing UD Technology Co., Ltd., taihusupport@amcc.com
  7. *
  8. * See file CREDITS for list of people who contributed to this
  9. * project.
  10. *
  11. * This program is free software; you can redistribute it and/or
  12. * modify it under the terms of the GNU General Public License as
  13. * published by the Free Software Foundation; either version 2 of
  14. * the License, or (at your option) any later version.
  15. *
  16. * This program is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU General Public License
  22. * along with this program; if not, write to the Free Software
  23. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  24. * MA 02111-1307 USA
  25. */
  26. #include <common.h>
  27. #include <command.h>
  28. #include <asm/processor.h>
  29. #include <asm/io.h>
  30. #include <spi.h>
  31. #include <netdev.h>
  32. #include <asm/ppc4xx-gpio.h>
  33. extern int lcd_init(void);
  34. /*
  35. * board_early_init_f
  36. */
  37. int board_early_init_f(void)
  38. {
  39. lcd_init();
  40. mtdcr(UIC0SR, 0xFFFFFFFF); /* clear all ints */
  41. mtdcr(UIC0ER, 0x00000000); /* disable all ints */
  42. mtdcr(UIC0CR, 0x00000000);
  43. mtdcr(UIC0PR, 0xFFFF7F00); /* set int polarities */
  44. mtdcr(UIC0TR, 0x00000000); /* set int trigger levels */
  45. mtdcr(UIC0SR, 0xFFFFFFFF); /* clear all ints */
  46. mtdcr(UIC0VCR, 0x00000001); /* set vect base=0,INT0 highest priority */
  47. mtebc(PB3AP, CONFIG_SYS_EBC_PB3AP); /* memory bank 3 (CPLD_LCM) initialization */
  48. mtebc(PB3CR, CONFIG_SYS_EBC_PB3CR);
  49. /*
  50. * Configure CPC0_PCI to enable PerWE as output
  51. * and enable the internal PCI arbiter
  52. */
  53. mtdcr(CPC0_PCI, CPC0_PCI_SPE | CPC0_PCI_HOST_CFG_EN | CPC0_PCI_ARBIT_EN);
  54. return 0;
  55. }
  56. /*
  57. * Check Board Identity:
  58. */
  59. int checkboard(void)
  60. {
  61. char buf[64];
  62. int i = getenv_f("serial#", buf, sizeof(buf));
  63. puts("Board: Taihu - AMCC PPC405EP Evaluation Board");
  64. if (i > 0) {
  65. puts(", serial# ");
  66. puts(buf);
  67. }
  68. putc('\n');
  69. return 0;
  70. }
  71. static int do_sw_stat(cmd_tbl_t* cmd_tp, int flags, int argc, char * const argv[])
  72. {
  73. char stat;
  74. int i;
  75. stat = in_8((u8 *) CPLD_REG0_ADDR);
  76. printf("SW2 status: ");
  77. for (i=0; i<4; i++) /* 4-position */
  78. printf("%d:%s ", i, stat & (0x08 >> i)?"on":"off");
  79. printf("\n");
  80. return 0;
  81. }
  82. U_BOOT_CMD (
  83. sw2_stat, 1, 1, do_sw_stat,
  84. "show status of switch 2",
  85. ""
  86. );
  87. static int do_led_ctl(cmd_tbl_t* cmd_tp, int flags, int argc, char * const argv[])
  88. {
  89. int led_no;
  90. if (argc != 3)
  91. return cmd_usage(cmd_tp);
  92. led_no = simple_strtoul(argv[1], NULL, 16);
  93. if (led_no != 1 && led_no != 2)
  94. return cmd_usage(cmd_tp);
  95. if (strcmp(argv[2],"off") == 0x0) {
  96. if (led_no == 1)
  97. gpio_write_bit(30, 1);
  98. else
  99. gpio_write_bit(31, 1);
  100. } else if (strcmp(argv[2],"on") == 0x0) {
  101. if (led_no == 1)
  102. gpio_write_bit(30, 0);
  103. else
  104. gpio_write_bit(31, 0);
  105. } else {
  106. return cmd_usage(cmd_tp);
  107. }
  108. return 0;
  109. }
  110. U_BOOT_CMD (
  111. led_ctl, 3, 1, do_led_ctl,
  112. "make led 1 or 2 on or off",
  113. "<led_no> <on/off> - make led <led_no> on/off,\n"
  114. "\tled_no is 1 or 2"
  115. );
  116. #define SPI_CS_GPIO0 0
  117. #define SPI_SCLK_GPIO14 14
  118. #define SPI_DIN_GPIO15 15
  119. #define SPI_DOUT_GPIO16 16
  120. void spi_scl(int bit)
  121. {
  122. gpio_write_bit(SPI_SCLK_GPIO14, bit);
  123. }
  124. void spi_sda(int bit)
  125. {
  126. gpio_write_bit(SPI_DOUT_GPIO16, bit);
  127. }
  128. unsigned char spi_read(void)
  129. {
  130. return (unsigned char)gpio_read_in_bit(SPI_DIN_GPIO15);
  131. }
  132. int spi_cs_is_valid(unsigned int bus, unsigned int cs)
  133. {
  134. return bus == 0 && cs == 0;
  135. }
  136. void spi_cs_activate(struct spi_slave *slave)
  137. {
  138. gpio_write_bit(SPI_CS_GPIO0, 1);
  139. }
  140. void spi_cs_deactivate(struct spi_slave *slave)
  141. {
  142. gpio_write_bit(SPI_CS_GPIO0, 0);
  143. }
  144. #ifdef CONFIG_PCI
  145. static unsigned char int_lines[32] = {
  146. 29, 30, 27, 28, 29, 30, 25, 27,
  147. 29, 30, 27, 28, 29, 30, 27, 28,
  148. 29, 30, 27, 28, 29, 30, 27, 28,
  149. 29, 30, 27, 28, 29, 30, 27, 28};
  150. static void taihu_pci_fixup_irq(struct pci_controller *hose, pci_dev_t dev)
  151. {
  152. unsigned char int_line = int_lines[PCI_DEV(dev) & 31];
  153. pci_hose_write_config_byte(hose, dev, PCI_INTERRUPT_LINE, int_line);
  154. }
  155. int pci_pre_init(struct pci_controller *hose)
  156. {
  157. hose->fixup_irq = taihu_pci_fixup_irq;
  158. return 1;
  159. }
  160. #endif /* CONFIG_PCI */
  161. int board_eth_init(bd_t *bis)
  162. {
  163. cpu_eth_init(bis);
  164. return pci_eth_init(bis);
  165. }