cpuat91.c 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /*
  2. * (C) Copyright 2006-2010 Eukrea Electromatique <www.eukrea.com>
  3. * Eric Benard <eric@eukrea.com>
  4. * based on at91rm9200dk.c which is :
  5. * (C) Copyright 2002
  6. * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
  7. * Marius Groeger <mgroeger@sysgo.de>
  8. *
  9. * See file CREDITS for list of people who contributed to this
  10. * project.
  11. *
  12. * This program is free software; you can redistribute it and/or
  13. * modify it under the terms of the GNU General Public License as
  14. * published by the Free Software Foundation; either version 2 of
  15. * the License, or (at your option) any later version.
  16. *
  17. * This program is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. * GNU General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU General Public License
  23. * along with this program; if not, write to the Free Software
  24. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  25. * MA 02111-1307 USA
  26. */
  27. #include <common.h>
  28. #include <netdev.h>
  29. #include <asm/io.h>
  30. #include <asm/arch/hardware.h>
  31. #include <asm/arch/at91_pio.h>
  32. #include <asm/arch/at91_pmc.h>
  33. DECLARE_GLOBAL_DATA_PTR;
  34. /* ------------------------------------------------------------------------- */
  35. /*
  36. * Miscelaneous platform dependent initialisations
  37. */
  38. int board_init(void)
  39. {
  40. /* Enable Ctrlc */
  41. console_init_f();
  42. /* arch number of CPUAT91-Board */
  43. gd->bd->bi_arch_number = MACH_TYPE_CPUAT91;
  44. /* adress of boot parameters */
  45. gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
  46. return 0;
  47. }
  48. int dram_init(void)
  49. {
  50. /* dram_init must store complete ramsize in gd->ram_size */
  51. gd->ram_size = get_ram_size((volatile long *)CONFIG_SYS_SDRAM_BASE,
  52. CONFIG_SYS_SDRAM_SIZE);
  53. return 0;
  54. }
  55. #ifdef CONFIG_DRIVER_AT91EMAC
  56. int board_eth_init(bd_t *bis)
  57. {
  58. return at91emac_register(bis, (u32) ATMEL_BASE_EMAC);
  59. }
  60. #endif
  61. #ifdef CONFIG_SOFT_I2C
  62. void i2c_init_board(void)
  63. {
  64. u32 pin;
  65. at91_pmc_t *pmc = (at91_pmc_t *) ATMEL_BASE_PMC;
  66. at91_pio_t *pio = (at91_pio_t *) ATMEL_BASE_PIO;
  67. writel(1 << AT91_ID_PIOA, &pmc->pcer);
  68. pin = AT91_PMX_AA_TWD | AT91_PMX_AA_TWCK;
  69. writel(pin, &pio->pioa.idr);
  70. writel(pin, &pio->pioa.pudr);
  71. writel(pin, &pio->pioa.per);
  72. writel(pin, &pio->pioa.oer);
  73. writel(pin, &pio->pioa.sodr);
  74. }
  75. #endif