Blame view

include/configs/stout.h 2.33 KB
21871138b   Vladimir Barinov   arm: rmobile: Add...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  /*
   * include/configs/stout.h
   *     This file is Stout board configuration.
   *
   * Copyright (C) 2015 Renesas Electronics Europe GmbH
   * Copyright (C) 2015 Renesas Electronics Corporation
   * Copyright (C) 2015 Cogent Embedded, Inc.
   *
   * SPDX-License-Identifier: GPL-2.0
   */
  
  #ifndef __STOUT_H
  #define __STOUT_H
  
  #undef DEBUG
1cc95f6e1   Nobuhiro Iwamatsu   ARM: Rmobile: Ren...
16
  #define CONFIG_ARCH_RMOBILE_BOARD_STRING "Stout"
21871138b   Vladimir Barinov   arm: rmobile: Add...
17
18
  
  #include "rcar-gen2-common.h"
21871138b   Vladimir Barinov   arm: rmobile: Add...
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
  /* STACK */
  #if defined(CONFIGF_RMOBILE_EXTRAM_BOOT)
  #define CONFIG_SYS_INIT_SP_ADDR		0xB003FFFC
  #else
  #define CONFIG_SYS_INIT_SP_ADDR		0xE827FFFC
  #endif
  #define STACK_AREA_SIZE			0xC000
  #define LOW_LEVEL_MERAM_STACK	\
  		(CONFIG_SYS_INIT_SP_ADDR + STACK_AREA_SIZE - 4)
  
  /* MEMORY */
  #define RCAR_GEN2_SDRAM_BASE		0x40000000
  #define RCAR_GEN2_SDRAM_SIZE		(1024u * 1024 * 1024)
  #define RCAR_GEN2_UBOOT_SDRAM_SIZE	(512 * 1024 * 1024)
  
  /* SCIF */
21871138b   Vladimir Barinov   arm: rmobile: Add...
35
36
37
38
  #define CONFIG_SCIF_A
  
  /* SPI */
  #define CONFIG_SPI
21871138b   Vladimir Barinov   arm: rmobile: Add...
39
  #define CONFIG_SPI_FLASH_QUAD
21871138b   Vladimir Barinov   arm: rmobile: Add...
40
41
  
  /* SH Ether */
21871138b   Vladimir Barinov   arm: rmobile: Add...
42
43
44
45
46
47
  #define CONFIG_SH_ETHER_USE_PORT	0
  #define CONFIG_SH_ETHER_PHY_ADDR	0x1
  #define CONFIG_SH_ETHER_PHY_MODE PHY_INTERFACE_MODE_RMII
  #define CONFIG_SH_ETHER_ALIGNE_SIZE	64
  #define CONFIG_SH_ETHER_CACHE_WRITEBACK
  #define CONFIG_SH_ETHER_CACHE_INVALIDATE
21871138b   Vladimir Barinov   arm: rmobile: Add...
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
  #define CONFIG_BITBANGMII
  #define CONFIG_BITBANGMII_MULTI
  
  /* I2C */
  #define CONFIG_SYS_I2C
  #define CONFIG_SYS_I2C_RCAR
  #define CONFIG_SYS_RCAR_I2C0_SPEED	400000
  #define CONFIG_SYS_RCAR_I2C1_SPEED	400000
  #define CONFIG_SYS_RCAR_I2C2_SPEED	400000
  #define CONFIG_SYS_RCAR_I2C3_SPEED	400000
  #define CONFIF_SYS_RCAR_I2C_NUM_CONTROLLERS	4
  
  #define CONFIG_SYS_I2C_POWERIC_ADDR 0x58 /* da9063 */
  
  /* Board Clock */
  #define RMOBILE_XTAL_CLK	20000000u
  #define CONFIG_SYS_CLK_FREQ	RMOBILE_XTAL_CLK
  #define CONFIG_SH_TMU_CLK_FREQ	(CONFIG_SYS_CLK_FREQ / 2) /* EXT / 2 */
  #define CONFIG_PLL1_CLK_FREQ	(CONFIG_SYS_CLK_FREQ * 156 / 2)
  #define CONFIG_PLL1_DIV2_CLK_FREQ	(CONFIG_PLL1_CLK_FREQ / 2)
  #define CONFIG_MP_CLK_FREQ	(CONFIG_PLL1_DIV2_CLK_FREQ / 15)
  #define CONFIG_HP_CLK_FREQ	(CONFIG_PLL1_CLK_FREQ / 12)
  
  #define CONFIG_SYS_TMU_CLK_DIV	4
  
  /* USB */
21871138b   Vladimir Barinov   arm: rmobile: Add...
74
75
  #define CONFIG_USB_EHCI_RMOBILE
  #define CONFIG_USB_MAX_CONTROLLER_COUNT	3
21871138b   Vladimir Barinov   arm: rmobile: Add...
76

21871138b   Vladimir Barinov   arm: rmobile: Add...
77
78
79
80
81
82
83
84
85
86
87
88
  /* Module stop status bits */
  /* INTC-RT */
  #define CONFIG_SMSTP0_ENA	0x00400000
  /* MSIF, SCIFA0 */
  #define CONFIG_SMSTP2_ENA	0x00002010
  /* INTC-SYS, IRQC */
  #define CONFIG_SMSTP4_ENA	0x00000180
  
  /* SDHI */
  #define CONFIG_SH_SDHI_FREQ	97500000
  
  #endif	/* __STOUT_H */