Blame view

include/configs/mx6ull_ddr3_arm2.h 2.21 KB
d41ce506b   Eric Lee   Initial Release, ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
  /*
   * Copyright (C) 2016 Freescale Semiconductor, Inc.
   *
   * Configuration settings for the Freescale i.MX6UL 14x14 DDR3 ARM2.
   *
   * SPDX-License-Identifier:	GPL-2.0+
   */
  #ifndef __MX6ULL_DDR3_ARM2_CONFIG_H
  #define __MX6ULL_DDR3_ARM2_CONFIG_H
  
  #ifdef  CONFIG_SPI_BOOT
  
  #define CONFIG_MXC_SPI
  #elif defined CONFIG_NAND_BOOT
  #define CONFIG_CMD_NAND
  #endif
  
  #define BOOTARGS_CMA_SIZE   ""
  
  #include "mx6ul_arm2.h"
  
  #define CONFIG_IOMUX_LPSR
  
  #define PHYS_SDRAM_SIZE			SZ_1G
  
  /*
   * TSC pins conflict with I2C1 bus, so after TSC
   * hardware rework, need to disable i2c1 bus, also
   * need to disable PMIC and ldo bypass check.
   */
  #ifdef CONFIG_MX6ULL_DDR3_ARM2_TSC_REWORK
  #undef CONFIG_LDO_BYPASS_CHECK
  #undef CONFIG_SYS_I2C_MXC
  #undef CONFIG_SYS_I2C
  #undef CONFIG_CMD_I2C
  #undef CONFIG_POWER_PFUZE100_I2C_ADDR
  #undef CONFIG_POWER_PFUZE100
  #undef CONFIG_POWER_I2C
  #undef CONFIG_POWER
  #endif
  
  #ifdef CONFIG_MXC_SPI
  #define CONFIG_SF_DEFAULT_BUS  0
  #define CONFIG_SF_DEFAULT_SPEED 20000000
  #define CONFIG_SF_DEFAULT_MODE (SPI_MODE_0)
  #define CONFIG_SF_DEFAULT_CS   0
  #endif
  
  #ifdef CONFIG_DM_ETH
  #define CONFIG_CMD_MII
  #define CONFIG_FEC_MXC
  #define CONFIG_MII
  #define CONFIG_FEC_ENET_DEV 1
  
  #if (CONFIG_FEC_ENET_DEV == 0)
  #define IMX_FEC_BASE			ENET_BASE_ADDR
  #define CONFIG_FEC_MXC_PHYADDR          0x1
  #define CONFIG_FEC_XCV_TYPE             RMII
  #ifdef CONFIG_DM_ETH
  #define CONFIG_ETHPRIME			"eth0"
  #else
  #define CONFIG_ETHPRIME			"FEC0"
  #endif
  #elif (CONFIG_FEC_ENET_DEV == 1)
  #define IMX_FEC_BASE			ENET2_BASE_ADDR
  #define CONFIG_FEC_MXC_PHYADDR          0x2
  #define CONFIG_FEC_XCV_TYPE             MII100
  #ifdef CONFIG_DM_ETH
  #define CONFIG_ETHPRIME			"eth1"
  #else
  #define CONFIG_ETHPRIME			"FEC1"
  #endif
  #endif
  
  #define CONFIG_PHYLIB
  #define CONFIG_PHY_MICREL
  #define CONFIG_FEC_MXC_MDIO_BASE ENET2_BASE_ADDR
  #endif
  
  
  /* #define CONFIG_SPLASH_SCREEN*/
  /* #define CONFIG_MXC_EPDC*/
  
  /*
   * SPLASH SCREEN Configs
   */
  #if defined(CONFIG_MXC_EPDC)
  /*
   * Framebuffer and LCD
   */
  #define	CONFIG_SPLASH_SCREEN
  
  #undef LCD_TEST_PATTERN
  /* #define CONFIG_SPLASH_IS_IN_MMC			1 */
  #define LCD_BPP					LCD_MONOCHROME
  /* #define CONFIG_SPLASH_SCREEN_ALIGN		1 */
  
  #define CONFIG_WAVEFORM_BUF_SIZE		0x400000
  #endif
  
  #define CONFIG_MODULE_FUSE
  #define CONFIG_OF_SYSTEM_SETUP
  
  #endif