smdkc100.c 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. /*
  2. * Copyright (C) 2008-2009 Samsung Electronics
  3. * Minkyu Kang <mk7.kang@samsung.com>
  4. * Kyungmin Park <kyungmin.park@samsung.com>
  5. *
  6. * See file CREDITS for list of people who contributed to this
  7. * project.
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License as
  11. * published by the Free Software Foundation; either version 2 of
  12. * the License, or (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  22. * MA 02111-1307 USA
  23. */
  24. #include <common.h>
  25. #include <asm/io.h>
  26. #include <asm/arch/smc.h>
  27. #include <asm/arch/gpio.h>
  28. #include <netdev.h>
  29. DECLARE_GLOBAL_DATA_PTR;
  30. /*
  31. * Miscellaneous platform dependent initialisations
  32. */
  33. static void smc9115_pre_init(void)
  34. {
  35. u32 smc_bw_conf, smc_bc_conf;
  36. struct s5pc100_gpio *const gpio =
  37. (struct s5pc100_gpio *)samsung_get_base_gpio();
  38. /* gpio configuration GPK0CON */
  39. gpio_cfg_pin(&gpio->k0, CONFIG_ENV_SROM_BANK, GPIO_FUNC(2));
  40. /* Ethernet needs bus width of 16 bits */
  41. smc_bw_conf = SMC_DATA16_WIDTH(CONFIG_ENV_SROM_BANK);
  42. smc_bc_conf = SMC_BC_TACS(0x0) | SMC_BC_TCOS(0x4) | SMC_BC_TACC(0xe)
  43. | SMC_BC_TCOH(0x1) | SMC_BC_TAH(0x4)
  44. | SMC_BC_TACP(0x6) | SMC_BC_PMC(0x0);
  45. /* Select and configure the SROMC bank */
  46. s5pc1xx_config_sromc(CONFIG_ENV_SROM_BANK, smc_bw_conf, smc_bc_conf);
  47. }
  48. int board_init(void)
  49. {
  50. smc9115_pre_init();
  51. gd->bd->bi_arch_number = MACH_TYPE_SMDKC100;
  52. gd->bd->bi_boot_params = PHYS_SDRAM_1 + 0x100;
  53. return 0;
  54. }
  55. int dram_init(void)
  56. {
  57. gd->ram_size = get_ram_size((long *)PHYS_SDRAM_1, PHYS_SDRAM_1_SIZE);
  58. return 0;
  59. }
  60. void dram_init_banksize(void)
  61. {
  62. gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
  63. gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
  64. }
  65. #ifdef CONFIG_DISPLAY_BOARDINFO
  66. int checkboard(void)
  67. {
  68. printf("Board:\tSMDKC100\n");
  69. return 0;
  70. }
  71. #endif
  72. int board_eth_init(bd_t *bis)
  73. {
  74. int rc = 0;
  75. #ifdef CONFIG_SMC911X
  76. rc = smc911x_initialize(0, CONFIG_SMC911X_BASE);
  77. #endif
  78. return rc;
  79. }