Blame view

board/altera/socfpga/socfpga_cyclone5.c 719 Bytes
777544085   Dinh Nguyen   ARM: Add Altera S...
1
2
3
  /*
   *  Copyright (C) 2012 Altera Corporation <www.altera.com>
   *
1a4596601   Wolfgang Denk   Add GPL-2.0+ SPDX...
4
   * SPDX-License-Identifier:	GPL-2.0+
777544085   Dinh Nguyen   ARM: Add Altera S...
5
6
7
8
9
10
11
12
13
   */
  
  #include <common.h>
  #include <asm/arch/reset_manager.h>
  #include <asm/io.h>
  
  #include <netdev.h>
  
  DECLARE_GLOBAL_DATA_PTR;
777544085   Dinh Nguyen   ARM: Add Altera S...
14
15
16
17
18
  /*
   * Print Board information
   */
  int checkboard(void)
  {
604364e42   Marek Vasut   arm: socfpga: boa...
19
20
  	puts("BOARD: Altera SoCFPGA Cyclone5 Board
  ");
777544085   Dinh Nguyen   ARM: Add Altera S...
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
  	return 0;
  }
  
  /*
   * Initialization function which happen at early stage of c code
   */
  int board_early_init_f(void)
  {
  	return 0;
  }
  
  /*
   * Miscellaneous platform dependent initialisations
   */
  int board_init(void)
  {
  	icache_enable();
40e7bcdee   Marek Vasut   arm: socfpga: cac...
38
  	dcache_enable();
868749a61   Pavel Machek   arm: socfpga: boa...
39
40
41
  
  	/* Address of boot parameters for ATAG (if ATAG is used) */
  	gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
777544085   Dinh Nguyen   ARM: Add Altera S...
42
43
  	return 0;
  }