mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-25 14:10:43 +00:00
Merge branch 'master' of git://git.denx.de/u-boot-sunxi
This commit is contained in:
commit
be8ddad9c8
47 changed files with 495 additions and 336 deletions
|
@ -15,8 +15,10 @@ obj-y += pinmux.o
|
|||
obj-y += usbc.o
|
||||
obj-$(CONFIG_MACH_SUN6I) += prcm.o
|
||||
obj-$(CONFIG_MACH_SUN8I) += prcm.o
|
||||
obj-$(CONFIG_MACH_SUN9I) += prcm.o
|
||||
obj-$(CONFIG_MACH_SUN6I) += p2wi.o
|
||||
obj-$(CONFIG_MACH_SUN8I) += rsb.o
|
||||
obj-$(CONFIG_MACH_SUN9I) += rsb.o
|
||||
obj-$(CONFIG_MACH_SUN4I) += clock_sun4i.o
|
||||
obj-$(CONFIG_MACH_SUN5I) += clock_sun4i.o
|
||||
obj-$(CONFIG_MACH_SUN6I) += clock_sun6i.o
|
||||
|
|
|
@ -16,14 +16,27 @@
|
|||
#include <asm/arch/prcm.h>
|
||||
#include <asm/arch/rsb.h>
|
||||
|
||||
static int rsb_set_device_mode(void);
|
||||
|
||||
static void rsb_cfg_io(void)
|
||||
{
|
||||
#ifdef CONFIG_MACH_SUN8I
|
||||
sunxi_gpio_set_cfgpin(SUNXI_GPL(0), SUN8I_GPL0_R_RSB_SCK);
|
||||
sunxi_gpio_set_cfgpin(SUNXI_GPL(1), SUN8I_GPL1_R_RSB_SDA);
|
||||
sunxi_gpio_set_pull(SUNXI_GPL(0), 1);
|
||||
sunxi_gpio_set_pull(SUNXI_GPL(1), 1);
|
||||
sunxi_gpio_set_drv(SUNXI_GPL(0), 2);
|
||||
sunxi_gpio_set_drv(SUNXI_GPL(1), 2);
|
||||
#elif defined CONFIG_MACH_SUN9I
|
||||
sunxi_gpio_set_cfgpin(SUNXI_GPN(0), SUN9I_GPN0_R_RSB_SCK);
|
||||
sunxi_gpio_set_cfgpin(SUNXI_GPN(1), SUN9I_GPN1_R_RSB_SDA);
|
||||
sunxi_gpio_set_pull(SUNXI_GPN(0), 1);
|
||||
sunxi_gpio_set_pull(SUNXI_GPN(1), 1);
|
||||
sunxi_gpio_set_drv(SUNXI_GPN(0), 2);
|
||||
sunxi_gpio_set_drv(SUNXI_GPN(1), 2);
|
||||
#else
|
||||
#error unsupported MACH_SUNXI
|
||||
#endif
|
||||
}
|
||||
|
||||
static void rsb_set_clk(void)
|
||||
|
@ -42,7 +55,7 @@ static void rsb_set_clk(void)
|
|||
writel((cd_odly << 8) | div, &rsb->ccr);
|
||||
}
|
||||
|
||||
void rsb_init(void)
|
||||
int rsb_init(void)
|
||||
{
|
||||
struct sunxi_rsb_reg * const rsb =
|
||||
(struct sunxi_rsb_reg *)SUNXI_RSB_BASE;
|
||||
|
@ -54,6 +67,8 @@ void rsb_init(void)
|
|||
|
||||
writel(RSB_CTRL_SOFT_RST, &rsb->ctrl);
|
||||
rsb_set_clk();
|
||||
|
||||
return rsb_set_device_mode();
|
||||
}
|
||||
|
||||
static int rsb_await_trans(void)
|
||||
|
@ -88,13 +103,14 @@ static int rsb_await_trans(void)
|
|||
return ret;
|
||||
}
|
||||
|
||||
int rsb_set_device_mode(u32 device_mode_data)
|
||||
static int rsb_set_device_mode(void)
|
||||
{
|
||||
struct sunxi_rsb_reg * const rsb =
|
||||
(struct sunxi_rsb_reg *)SUNXI_RSB_BASE;
|
||||
unsigned long tmo = timer_get_us() + 1000000;
|
||||
|
||||
writel(RSB_DMCR_DEVICE_MODE_START | device_mode_data, &rsb->dmcr);
|
||||
writel(RSB_DMCR_DEVICE_MODE_START | RSB_DMCR_DEVICE_MODE_DATA,
|
||||
&rsb->dmcr);
|
||||
|
||||
while (readl(&rsb->dmcr) & RSB_DMCR_DEVICE_MODE_START) {
|
||||
if (timer_get_us() > tmo)
|
||||
|
|
|
@ -305,6 +305,8 @@ struct sunxi_ccm_reg {
|
|||
#define CCM_GMAC_CTRL_TX_CLK_SRC_INT_RGMII 0x2
|
||||
#define CCM_GMAC_CTRL_GPIT_MII (0x0 << 2)
|
||||
#define CCM_GMAC_CTRL_GPIT_RGMII (0x1 << 2)
|
||||
#define CCM_GMAC_CTRL_RX_CLK_DELAY(x) ((x) << 5)
|
||||
#define CCM_GMAC_CTRL_TX_CLK_DELAY(x) ((x) << 10)
|
||||
|
||||
#define CCM_USB_CTRL_PHY0_RST (0x1 << 0)
|
||||
#define CCM_USB_CTRL_PHY1_RST (0x1 << 1)
|
||||
|
|
|
@ -243,6 +243,8 @@ struct sunxi_ccm_reg {
|
|||
#define CCM_GMAC_CTRL_TX_CLK_SRC_INT_RGMII 0x2
|
||||
#define CCM_GMAC_CTRL_GPIT_MII (0x0 << 2)
|
||||
#define CCM_GMAC_CTRL_GPIT_RGMII (0x1 << 2)
|
||||
#define CCM_GMAC_CTRL_RX_CLK_DELAY(x) ((x) << 5)
|
||||
#define CCM_GMAC_CTRL_TX_CLK_DELAY(x) ((x) << 10)
|
||||
|
||||
#define MDFS_CLK_DEFAULT 0x81000002 /* PLL6 / 3 */
|
||||
|
||||
|
|
|
@ -73,7 +73,6 @@
|
|||
#define SUNXI_CCM_BASE (REGS_APB0_BASE + 0x0000)
|
||||
#define SUNXI_CCMMODULE_BASE (REGS_APB0_BASE + 0x0400)
|
||||
#define SUNXI_PIO_BASE (REGS_APB0_BASE + 0x0800)
|
||||
#define SUNXI_R_PIO_BASE (0x08002C00)
|
||||
#define SUNXI_TIMER_BASE (REGS_APB0_BASE + 0x0C00)
|
||||
#define SUNXI_PWM_BASE (REGS_APB0_BASE + 0x1400)
|
||||
#define SUNXI_LRADC_BASE (REGS_APB0_BASE + 0x1800)
|
||||
|
@ -92,8 +91,10 @@
|
|||
#define SUNXI_TWI4_BASE (REGS_APB1_BASE + 0x3800)
|
||||
|
||||
/* RCPUS Module */
|
||||
#define SUNXI_RPRCM_BASE (REGS_RCPUS_BASE + 0x1400)
|
||||
#define SUNXI_PRCM_BASE (REGS_RCPUS_BASE + 0x1400)
|
||||
#define SUNXI_R_UART_BASE (REGS_RCPUS_BASE + 0x2800)
|
||||
#define SUNXI_R_PIO_BASE (REGS_RCPUS_BASE + 0x2c00)
|
||||
#define SUNXI_RSB_BASE (REGS_RCPUS_BASE + 0x3400)
|
||||
|
||||
/* Misc. */
|
||||
#define SUNXI_BROM_BASE 0xFFFF0000 /* 32K */
|
||||
|
|
|
@ -45,9 +45,13 @@
|
|||
*
|
||||
* sun8i has 1 bank:
|
||||
* PL0 - PL11
|
||||
*
|
||||
* sun9i has 3 banks:
|
||||
* PL0 - PL9 | PM0 - PM15 | PN0 - PN1
|
||||
*/
|
||||
#define SUNXI_GPIO_L 11
|
||||
#define SUNXI_GPIO_M 12
|
||||
#define SUNXI_GPIO_N 13
|
||||
|
||||
struct sunxi_gpio {
|
||||
u32 cfg[4];
|
||||
|
@ -114,6 +118,7 @@ enum sunxi_gpio_number {
|
|||
SUNXI_GPIO_I_START = SUNXI_GPIO_NEXT(SUNXI_GPIO_H),
|
||||
SUNXI_GPIO_L_START = 352,
|
||||
SUNXI_GPIO_M_START = SUNXI_GPIO_NEXT(SUNXI_GPIO_L),
|
||||
SUNXI_GPIO_N_START = SUNXI_GPIO_NEXT(SUNXI_GPIO_M),
|
||||
SUNXI_GPIO_AXP0_START = 1024,
|
||||
};
|
||||
|
||||
|
@ -129,6 +134,7 @@ enum sunxi_gpio_number {
|
|||
#define SUNXI_GPI(_nr) (SUNXI_GPIO_I_START + (_nr))
|
||||
#define SUNXI_GPL(_nr) (SUNXI_GPIO_L_START + (_nr))
|
||||
#define SUNXI_GPM(_nr) (SUNXI_GPIO_M_START + (_nr))
|
||||
#define SUNXI_GPN(_nr) (SUNXI_GPIO_N_START + (_nr))
|
||||
|
||||
#define SUNXI_GPAXP0(_nr) (SUNXI_GPIO_AXP0_START + (_nr))
|
||||
|
||||
|
@ -187,6 +193,9 @@ enum sunxi_gpio_number {
|
|||
#define SUN8I_GPL2_R_UART_TX 2
|
||||
#define SUN8I_GPL3_R_UART_RX 2
|
||||
|
||||
#define SUN9I_GPN0_R_RSB_SCK 3
|
||||
#define SUN9I_GPN1_R_RSB_SDA 3
|
||||
|
||||
/* GPIO pin pull-up/down config */
|
||||
#define SUNXI_GPIO_PULL_DISABLE 0
|
||||
#define SUNXI_GPIO_PULL_UP 1
|
||||
|
|
|
@ -37,6 +37,7 @@ struct sunxi_rsb_reg {
|
|||
#define RSB_STAT_TERR_INT (1 << 1)
|
||||
#define RSB_STAT_LBSY_INT (1 << 2)
|
||||
|
||||
#define RSB_DMCR_DEVICE_MODE_DATA 0x7c3e00
|
||||
#define RSB_DMCR_DEVICE_MODE_START (1 << 31)
|
||||
|
||||
#define RSB_CMD_BYTE_WRITE 0x4e
|
||||
|
@ -46,8 +47,7 @@ struct sunxi_rsb_reg {
|
|||
#define RSB_DEVADDR_RUNTIME_ADDR(x) ((x) << 16)
|
||||
#define RSB_DEVADDR_DEVICE_ADDR(x) ((x) << 0)
|
||||
|
||||
void rsb_init(void);
|
||||
int rsb_set_device_mode(u32 device_mode_data);
|
||||
int rsb_init(void);
|
||||
int rsb_set_device_address(u16 device_addr, u16 runtime_addr);
|
||||
int rsb_write(const u16 runtime_device_addr, const u8 reg_addr, u8 data);
|
||||
int rsb_read(const u16 runtime_device_addr, const u8 reg_addr, u8 *data);
|
||||
|
|
|
@ -39,16 +39,23 @@ config DRAM_CLK
|
|||
default 360 if MACH_SUN4I || MACH_SUN5I || MACH_SUN7I
|
||||
---help---
|
||||
Set the dram clock speed, valid range 240 - 480, must be a multiple
|
||||
of 24. Note on sun4i / sun5i / sun7i this is only used by boards
|
||||
which use dram autoconfig.
|
||||
of 24.
|
||||
|
||||
if MACH_SUN5I || MACH_SUN7I
|
||||
config DRAM_MBUS_CLK
|
||||
int "sunxi mbus clock speed"
|
||||
default 300
|
||||
---help---
|
||||
Set the mbus clock speed. The maximum on sun5i hardware is 300MHz.
|
||||
|
||||
endif
|
||||
|
||||
config DRAM_ZQ
|
||||
int "sunxi dram zq value"
|
||||
default 123 if MACH_SUN4I || MACH_SUN5I || MACH_SUN6I || MACH_SUN8I
|
||||
default 127 if MACH_SUN7I
|
||||
---help---
|
||||
Set the dram zq value. Note on sun4i / sun5i / sun7i this is only
|
||||
used by boards which use dram autoconfig.
|
||||
Set the dram zq value.
|
||||
|
||||
if MACH_SUN4I || MACH_SUN5I || MACH_SUN7I
|
||||
config DRAM_EMR1
|
||||
|
@ -56,8 +63,73 @@ config DRAM_EMR1
|
|||
default 0 if MACH_SUN4I
|
||||
default 4 if MACH_SUN5I || MACH_SUN7I
|
||||
---help---
|
||||
Set the dram controller emr1 value. Note this is only used by boards
|
||||
which use dram autoconfig.
|
||||
Set the dram controller emr1 value.
|
||||
|
||||
config DRAM_ODT_EN
|
||||
int "sunxi dram odt_en value"
|
||||
default 0
|
||||
---help---
|
||||
Set the dram controller odt_en parameter. This can be used to
|
||||
enable/disable the ODT feature.
|
||||
|
||||
config DRAM_TPR3
|
||||
hex "sunxi dram tpr3 value"
|
||||
default 0
|
||||
---help---
|
||||
Set the dram controller tpr3 parameter. This parameter configures
|
||||
the delay on the command lane and also phase shifts, which are
|
||||
applied for sampling incoming read data. The default value 0
|
||||
means that no phase/delay adjustments are necessary. Properly
|
||||
configuring this parameter increases reliability at high DRAM
|
||||
clock speeds.
|
||||
|
||||
config DRAM_DQS_GATING_DELAY
|
||||
hex "sunxi dram dqs_gating_delay value"
|
||||
default 0
|
||||
---help---
|
||||
Set the dram controller dqs_gating_delay parmeter. Each byte
|
||||
encodes the DQS gating delay for each byte lane. The delay
|
||||
granularity is 1/4 cycle. For example, the value 0x05060606
|
||||
means that the delay is 5 quarter-cycles for one lane (1.25
|
||||
cycles) and 6 quarter-cycles (1.5 cycles) for 3 other lanes.
|
||||
The default value 0 means autodetection. The results of hardware
|
||||
autodetection are not very reliable and depend on the chip
|
||||
temperature (sometimes producing different results on cold start
|
||||
and warm reboot). But the accuracy of hardware autodetection
|
||||
is usually good enough, unless running at really high DRAM
|
||||
clocks speeds (up to 600MHz). If unsure, keep as 0.
|
||||
|
||||
choice
|
||||
prompt "sunxi dram timings"
|
||||
default DRAM_TIMINGS_VENDOR_MAGIC
|
||||
---help---
|
||||
Select the timings of the DDR3 chips.
|
||||
|
||||
config DRAM_TIMINGS_VENDOR_MAGIC
|
||||
bool "Magic vendor timings from Android"
|
||||
---help---
|
||||
The same DRAM timings as in the Allwinner boot0 bootloader.
|
||||
|
||||
config DRAM_TIMINGS_DDR3_1066F_1333H
|
||||
bool "JEDEC DDR3-1333H with down binning to DDR3-1066F"
|
||||
---help---
|
||||
Use the timings of the standard JEDEC DDR3-1066F speed bin for
|
||||
DRAM_CLK <= 533MHz and the timings of the DDR3-1333H speed bin
|
||||
for DRAM_CLK > 533MHz. This covers the majority of DDR3 chips
|
||||
used in Allwinner A10/A13/A20 devices. In the case of DDR3-1333
|
||||
or DDR3-1600 chips, be sure to check the DRAM datasheet to confirm
|
||||
that down binning to DDR3-1066F is supported (because DDR3-1066F
|
||||
uses a bit faster timings than DDR3-1333H).
|
||||
|
||||
config DRAM_TIMINGS_DDR3_800E_1066G_1333J
|
||||
bool "JEDEC DDR3-800E / DDR3-1066G / DDR3-1333J"
|
||||
---help---
|
||||
Use the timings of the slowest possible JEDEC speed bin for the
|
||||
selected DRAM_CLK. Depending on the DRAM_CLK value, it may be
|
||||
DDR3-800E, DDR3-1066G or DDR3-1333J.
|
||||
|
||||
endchoice
|
||||
|
||||
endif
|
||||
|
||||
config SYS_CONFIG_NAME
|
||||
|
@ -67,88 +139,6 @@ config SYS_CONFIG_NAME
|
|||
default "sun7i" if MACH_SUN7I
|
||||
default "sun8i" if MACH_SUN8I
|
||||
|
||||
choice
|
||||
prompt "Board"
|
||||
|
||||
config TARGET_A10S_OLINUXINO_M
|
||||
bool "A10S_OLINUXINO_M"
|
||||
depends on MACH_SUN5I
|
||||
|
||||
config TARGET_A13_OLINUXINOM
|
||||
bool "A13_OLINUXINOM"
|
||||
depends on MACH_SUN5I
|
||||
|
||||
config TARGET_A13_OLINUXINO
|
||||
bool "A13_OLINUXINO"
|
||||
depends on MACH_SUN5I
|
||||
|
||||
config TARGET_A20_OLINUXINO_L2
|
||||
bool "A20_OLINUXINO_L2"
|
||||
depends on MACH_SUN7I
|
||||
|
||||
config TARGET_A20_OLINUXINO_L
|
||||
bool "A20_OLINUXINO_L"
|
||||
depends on MACH_SUN7I
|
||||
|
||||
config TARGET_A20_OLINUXINO_M
|
||||
bool "A20_OLINUXINO_M"
|
||||
depends on MACH_SUN7I
|
||||
|
||||
config TARGET_AUXTEK_T004
|
||||
bool "AUXTEK_T004"
|
||||
depends on MACH_SUN5I
|
||||
|
||||
config TARGET_BANANAPI
|
||||
bool "BANANAPI"
|
||||
depends on MACH_SUN7I
|
||||
|
||||
config TARGET_BANANAPRO
|
||||
bool "BANANAPRO"
|
||||
depends on MACH_SUN7I
|
||||
|
||||
config TARGET_CUBIEBOARD2
|
||||
bool "CUBIEBOARD2"
|
||||
depends on MACH_SUN7I
|
||||
|
||||
config TARGET_CUBIETRUCK
|
||||
bool "CUBIETRUCK"
|
||||
depends on MACH_SUN7I
|
||||
|
||||
config TARGET_PCDUINO3
|
||||
bool "PCDUINO3"
|
||||
depends on MACH_SUN7I
|
||||
|
||||
config TARGET_MELE_M3
|
||||
bool "MELE_M3"
|
||||
depends on MACH_SUN7I
|
||||
|
||||
config TARGET_MK802_A10S
|
||||
bool "MK802_A10S"
|
||||
depends on MACH_SUN5I
|
||||
|
||||
config TARGET_MSI_PRIMO73
|
||||
bool "MSI Primo73 (7\" tablet)"
|
||||
depends on MACH_SUN7I
|
||||
---help---
|
||||
The MSI Primo73 is an A20 based tablet, with 1G RAM, 16G NAND,
|
||||
1024x600 TN LCD display, mono speaker, 0.3 MP front camera, 2.0 MP
|
||||
rear camera, 3000 mAh battery, gt911 touchscreen, mma8452 accelerometer
|
||||
and rtl8188etv usb wifi. Has "power", "volume+" and "volume-" buttons
|
||||
(both volume buttons are also connected to the UBOOT_SEL pin). The
|
||||
external connectors are represented by MicroSD slot, MiniHDMI, MicroUSB
|
||||
OTG and 3.5mm headphone jack. More details are available at
|
||||
http://linux-sunxi.org/MSI_Primo73
|
||||
|
||||
config TARGET_I12_TVBOX
|
||||
bool "I12_TVBOX"
|
||||
depends on MACH_SUN7I
|
||||
|
||||
config TARGET_R7DONGLE
|
||||
bool "R7DONGLE"
|
||||
depends on MACH_SUN5I
|
||||
|
||||
endchoice
|
||||
|
||||
config SYS_BOARD
|
||||
default "sunxi"
|
||||
|
||||
|
@ -270,6 +260,16 @@ config VIDEO_VGA_VIA_LCD
|
|||
LCD interface driving a VGA connector, such as found on the
|
||||
Olimex A13 boards.
|
||||
|
||||
config VIDEO_VGA_VIA_LCD_FORCE_SYNC_ACTIVE_HIGH
|
||||
boolean "Force sync active high for VGA via LCD controller support"
|
||||
depends on VIDEO_VGA_VIA_LCD
|
||||
default n
|
||||
---help---
|
||||
Say Y here if you've a board which uses opendrain drivers for the vga
|
||||
hsync and vsync signals. Opendrain drivers cannot generate steep enough
|
||||
positive edges for a stable video output, so on boards with opendrain
|
||||
drivers the sync signals must always be active high.
|
||||
|
||||
config VIDEO_VGA_EXTERNAL_DAC_EN
|
||||
string "LCD panel power enable pin"
|
||||
depends on VIDEO_VGA_VIA_LCD
|
||||
|
@ -383,4 +383,10 @@ config USB_KEYBOARD
|
|||
Say Y here to add support for using a USB keyboard (typically used
|
||||
in combination with a graphical console).
|
||||
|
||||
config GMAC_TX_DELAY
|
||||
int "GMAC Transmit Clock Delay Chain"
|
||||
default 0
|
||||
---help---
|
||||
Set the GMAC Transmit Clock Delay Chain value.
|
||||
|
||||
endif
|
||||
|
|
|
@ -34,16 +34,6 @@ F: configs/qt840a_defconfig
|
|||
F: include/configs/sun8i.h
|
||||
F: configs/Ippo_q8h_v1_2_defconfig
|
||||
|
||||
CUBIEBOARD2 BOARD
|
||||
M: Ian Campbell <ijc@hellion.org.uk>
|
||||
M: Hans de Goede <hdegoede@redhat.com>
|
||||
S: Maintained
|
||||
F: include/configs/sun7i.h
|
||||
F: configs/Cubieboard2_defconfig
|
||||
F: configs/Cubieboard2_FEL_defconfig
|
||||
F: configs/Cubietruck_defconfig
|
||||
F: configs/Cubietruck_FEL_defconfig
|
||||
|
||||
A20-OLINUXINO-LIME BOARD
|
||||
M: FUKAUMI Naoki <naobsd@gmail.com>
|
||||
S: Maintained
|
||||
|
@ -61,21 +51,57 @@ M: Maxime Ripard <maxime.ripard@free-electrons.com>
|
|||
S: Maintained
|
||||
F: configs/Colombus_defconfig
|
||||
|
||||
GEMEI-G9 TABLET
|
||||
M: Priit Laes <plaes@plaes.org>
|
||||
S: Maintained
|
||||
F: configs/sunxi_Gemei_G9_defconfig
|
||||
CUBIEBOARD2 BOARD
|
||||
M: Ian Campbell <ijc@hellion.org.uk>
|
||||
M: Hans de Goede <hdegoede@redhat.com>
|
||||
S: Maintained
|
||||
F: include/configs/sun7i.h
|
||||
F: configs/Cubieboard2_defconfig
|
||||
F: configs/Cubieboard2_FEL_defconfig
|
||||
F: configs/Cubietruck_defconfig
|
||||
F: configs/Cubietruck_FEL_defconfig
|
||||
|
||||
HUMMINIGBIRD-A31 BOARD
|
||||
GEMEI-G9 TABLET
|
||||
M: Priit Laes <plaes@plaes.org>
|
||||
S: Maintained
|
||||
F: configs/sunxi_Gemei_G9_defconfig
|
||||
|
||||
HUMMINGBIRD-A31 BOARD
|
||||
M: Chen-Yu Tsai <wens@csie.org>
|
||||
S: Maintained
|
||||
F: configs/Hummingbird_A31_defconfig
|
||||
|
||||
INET-86VS BOARD
|
||||
M: Michal Suchanek <hramrach@gmail.com>
|
||||
S: Maintained
|
||||
F: board/sunxi/dram_inet_86vs.c
|
||||
F: configs/Inet_86VS_defconfig
|
||||
|
||||
IPPO-Q8H-V5 BOARD
|
||||
M: Chen-Yu Tsai <wens@csie.org>
|
||||
S: Maintained
|
||||
F: configs/Ippo_q8h_v5_defconfig
|
||||
|
||||
LINKSPRITE-PCDUINO BOARD
|
||||
M: Zoltan Herpai <wigyori@uid0.hu>
|
||||
S: Maintained
|
||||
F: configs/Linksprite_pcDuino_defconfig
|
||||
|
||||
LINKSPRITE-PCDUINO3-NANO BOARD
|
||||
M: Adam Sampson <ats@offog.org>
|
||||
S: Maintained
|
||||
F: configs/Linksprite_pcDuino3_Nano_defconfig
|
||||
|
||||
MARSBOARD-A10 BOARD
|
||||
M: Aleksei Mamlin <mamlinav@gmail.com>
|
||||
S: Maintained
|
||||
F: configs/Marsboard_A10_defconfig
|
||||
|
||||
MELE M5 BOARD
|
||||
M: Ian Campbell <ijc@hellion.org.uk>
|
||||
S: Maintained
|
||||
F: configs/Mele_M5_defconfig
|
||||
|
||||
MSI-PRIMO73 BOARD
|
||||
M: Siarhei Siamashka <siarhei.siamashka@gmail.com>
|
||||
S: Maintained
|
||||
|
@ -86,17 +112,7 @@ M: Siarhei Siamashka <siarhei.siamashka@gmail.com>
|
|||
S: Maintained
|
||||
F: configs/MSI_Primo81_defconfig
|
||||
|
||||
LINKSPRITE-PCDUINO BOARD
|
||||
M: Zoltan Herpai <wigyori@uid0.hu>
|
||||
TZX-Q8-713B7 BOARD
|
||||
M: Paul Kocialkowski <contact@paulk.fr>
|
||||
S: Maintained
|
||||
F: configs/Linksprite_pcDuino_defconfig
|
||||
|
||||
MARSBOARD-A10 BOARD
|
||||
M: Aleksei Mamlin <mamlinav@gmail.com>
|
||||
S: Maintained
|
||||
F: configs/Marsboard_A10_defconfig
|
||||
|
||||
MELE M5 BOARD
|
||||
M: Ian Campbell <ijc@hellion.org.uk>
|
||||
S: Maintained
|
||||
F: configs/Mele_M5_defconfig
|
||||
F: configs/TZX-Q8-713B7_defconfig
|
||||
|
|
|
@ -12,11 +12,5 @@ obj-y += board.o
|
|||
obj-$(CONFIG_SUNXI_GMAC) += gmac.o
|
||||
obj-$(CONFIG_SUNXI_AHCI) += ahci.o
|
||||
obj-$(CONFIG_MACH_SUN4I) += dram_sun4i_auto.o
|
||||
obj-$(CONFIG_MACH_SUN5I) += dram_sun5i_auto.o
|
||||
obj-$(CONFIG_MACH_SUN7I) += dram_sun5i_auto.o
|
||||
obj-$(CONFIG_TARGET_A10S_OLINUXINO_M) += dram_a10s_olinuxino_m.o
|
||||
obj-$(CONFIG_TARGET_A13_OLINUXINO) += dram_a13_olinuxino.o
|
||||
obj-$(CONFIG_TARGET_A13_OLINUXINOM) += dram_a13_oli_micro.o
|
||||
# This is not a typo, uses the same mem settings as the a10s-olinuxino-m
|
||||
obj-$(CONFIG_TARGET_AUXTEK_T004) += dram_a10s_olinuxino_m.o
|
||||
obj-$(CONFIG_TARGET_MK802_A10S) += dram_sun5i_auto.o
|
||||
obj-$(CONFIG_TARGET_R7DONGLE) += dram_r7dongle.o
|
||||
|
|
|
@ -1,31 +0,0 @@
|
|||
/* this file is generated, don't edit it yourself */
|
||||
|
||||
#include <common.h>
|
||||
#include <asm/arch/dram.h>
|
||||
|
||||
static struct dram_para dram_para = {
|
||||
.clock = 432,
|
||||
.type = 3,
|
||||
.rank_num = 1,
|
||||
.density = 4096,
|
||||
.io_width = 16,
|
||||
.bus_width = 16,
|
||||
.cas = 9,
|
||||
.zq = 123,
|
||||
.odt_en = 0,
|
||||
.size = 512,
|
||||
.tpr0 = 0x42d899b7,
|
||||
.tpr1 = 0xa090,
|
||||
.tpr2 = 0x22a00,
|
||||
.tpr3 = 0,
|
||||
.tpr4 = 0,
|
||||
.tpr5 = 0,
|
||||
.emr1 = 0x4,
|
||||
.emr2 = 0x10,
|
||||
.emr3 = 0,
|
||||
};
|
||||
|
||||
unsigned long sunxi_dram_init(void)
|
||||
{
|
||||
return dramc_init(&dram_para);
|
||||
}
|
|
@ -1,32 +0,0 @@
|
|||
/* this file is generated, don't edit it yourself */
|
||||
|
||||
#include <common.h>
|
||||
#include <asm/arch/dram.h>
|
||||
|
||||
static struct dram_para dram_para = {
|
||||
.clock = 408,
|
||||
.type = 3,
|
||||
.rank_num = 1,
|
||||
.density = 2048,
|
||||
.io_width = 16,
|
||||
.bus_width = 16,
|
||||
.cas = 9,
|
||||
.zq = 123,
|
||||
.odt_en = 0,
|
||||
.size = 256,
|
||||
.tpr0 = 0x42d899b7,
|
||||
.tpr1 = 0xa090,
|
||||
.tpr2 = 0x22a00,
|
||||
.tpr3 = 0,
|
||||
.tpr4 = 0,
|
||||
.tpr5 = 0,
|
||||
.emr1 = 0,
|
||||
.emr2 = 0x10,
|
||||
.emr3 = 0,
|
||||
|
||||
};
|
||||
|
||||
unsigned long sunxi_dram_init(void)
|
||||
{
|
||||
return dramc_init(&dram_para);
|
||||
}
|
|
@ -1,31 +0,0 @@
|
|||
/* this file is generated, don't edit it yourself */
|
||||
|
||||
#include <common.h>
|
||||
#include <asm/arch/dram.h>
|
||||
|
||||
static struct dram_para dram_para = {
|
||||
.clock = 408,
|
||||
.type = 3,
|
||||
.rank_num = 1,
|
||||
.density = 2048,
|
||||
.io_width = 8,
|
||||
.bus_width = 16,
|
||||
.cas = 9,
|
||||
.zq = 123,
|
||||
.odt_en = 0,
|
||||
.size = 512,
|
||||
.tpr0 = 0x42d899b7,
|
||||
.tpr1 = 0xa090,
|
||||
.tpr2 = 0x22a00,
|
||||
.tpr3 = 0,
|
||||
.tpr4 = 0,
|
||||
.tpr5 = 0,
|
||||
.emr1 = 0,
|
||||
.emr2 = 0x10,
|
||||
.emr3 = 0,
|
||||
};
|
||||
|
||||
unsigned long sunxi_dram_init(void)
|
||||
{
|
||||
return dramc_init(&dram_para);
|
||||
}
|
|
@ -1,31 +0,0 @@
|
|||
/* this file is generated, don't edit it yourself */
|
||||
|
||||
#include <common.h>
|
||||
#include <asm/arch/dram.h>
|
||||
|
||||
static struct dram_para dram_para = {
|
||||
.clock = 432,
|
||||
.type = 3,
|
||||
.rank_num = 1,
|
||||
.density = 4096,
|
||||
.io_width = 16,
|
||||
.bus_width = 32,
|
||||
.cas = 9,
|
||||
.zq = 0x7f,
|
||||
.odt_en = 0,
|
||||
.size = 1024,
|
||||
.tpr0 = 0x42d899b7,
|
||||
.tpr1 = 0xa090,
|
||||
.tpr2 = 0x22a00,
|
||||
.tpr3 = 0x0,
|
||||
.tpr4 = 0x1,
|
||||
.tpr5 = 0x0,
|
||||
.emr1 = 0x4,
|
||||
.emr2 = 0x10,
|
||||
.emr3 = 0x0,
|
||||
};
|
||||
|
||||
unsigned long sunxi_dram_init(void)
|
||||
{
|
||||
return dramc_init(&dram_para);
|
||||
}
|
|
@ -1,31 +0,0 @@
|
|||
/* this file is generated, don't edit it yourself */
|
||||
|
||||
#include <common.h>
|
||||
#include <asm/arch/dram.h>
|
||||
|
||||
static struct dram_para dram_para = {
|
||||
.clock = 384,
|
||||
.type = 3,
|
||||
.rank_num = 1,
|
||||
.density = 2048,
|
||||
.io_width = 8,
|
||||
.bus_width = 32,
|
||||
.cas = 9,
|
||||
.zq = 123,
|
||||
.odt_en = 0,
|
||||
.size = 1024,
|
||||
.tpr0 = 0x42d899b7,
|
||||
.tpr1 = 0xa090,
|
||||
.tpr2 = 0x22a00,
|
||||
.tpr3 = 0,
|
||||
.tpr4 = 0,
|
||||
.tpr5 = 0,
|
||||
.emr1 = 0x04,
|
||||
.emr2 = 0x10,
|
||||
.emr3 = 0,
|
||||
};
|
||||
|
||||
unsigned long sunxi_dram_init(void)
|
||||
{
|
||||
return dramc_init(&dram_para);
|
||||
}
|
|
@ -8,19 +8,25 @@ static struct dram_para dram_para = {
|
|||
.density = 0,
|
||||
.io_width = 0,
|
||||
.bus_width = 0,
|
||||
.cas = 6,
|
||||
.zq = CONFIG_DRAM_ZQ,
|
||||
.odt_en = 0,
|
||||
.odt_en = CONFIG_DRAM_ODT_EN,
|
||||
.size = 0,
|
||||
#ifdef CONFIG_DRAM_TIMINGS_VENDOR_MAGIC
|
||||
.cas = 6,
|
||||
.tpr0 = 0x30926692,
|
||||
.tpr1 = 0x1090,
|
||||
.tpr2 = 0x1a0c8,
|
||||
.tpr3 = 0,
|
||||
.emr2 = 0,
|
||||
#else
|
||||
# include "dram_timings_sun4i.h"
|
||||
.active_windowing = 1,
|
||||
#endif
|
||||
.tpr3 = CONFIG_DRAM_TPR3,
|
||||
.tpr4 = 0,
|
||||
.tpr5 = 0,
|
||||
.emr1 = CONFIG_DRAM_EMR1,
|
||||
.emr2 = 0,
|
||||
.emr3 = 0,
|
||||
.dqs_gating_delay = CONFIG_DRAM_DQS_GATING_DELAY,
|
||||
};
|
||||
|
||||
unsigned long sunxi_dram_init(void)
|
||||
|
|
|
@ -5,24 +5,31 @@
|
|||
|
||||
static struct dram_para dram_para = {
|
||||
.clock = CONFIG_DRAM_CLK,
|
||||
.mbus_clock = CONFIG_DRAM_MBUS_CLK,
|
||||
.type = 3,
|
||||
.rank_num = 1,
|
||||
.density = 0,
|
||||
.io_width = 0,
|
||||
.bus_width = 0,
|
||||
.cas = 9,
|
||||
.zq = CONFIG_DRAM_ZQ,
|
||||
.odt_en = 0,
|
||||
.odt_en = CONFIG_DRAM_ODT_EN,
|
||||
.size = 0,
|
||||
#ifdef CONFIG_DRAM_TIMINGS_VENDOR_MAGIC
|
||||
.cas = 9,
|
||||
.tpr0 = 0x42d899b7,
|
||||
.tpr1 = 0xa090,
|
||||
.tpr2 = 0x22a00,
|
||||
.emr2 = 0x10,
|
||||
#else
|
||||
# include "dram_timings_sun4i.h"
|
||||
.active_windowing = 1,
|
||||
#endif
|
||||
.tpr3 = 0,
|
||||
.tpr4 = 0,
|
||||
.tpr5 = 0,
|
||||
.emr1 = CONFIG_DRAM_EMR1,
|
||||
.emr2 = 0x10,
|
||||
.emr3 = 0,
|
||||
.dqs_gating_delay = CONFIG_DRAM_DQS_GATING_DELAY,
|
||||
};
|
||||
|
||||
unsigned long sunxi_dram_init(void)
|
||||
|
|
205
board/sunxi/dram_timings_sun4i.h
Normal file
205
board/sunxi/dram_timings_sun4i.h
Normal file
|
@ -0,0 +1,205 @@
|
|||
/* This file is automatically generated, do not edit */
|
||||
|
||||
#if defined(CONFIG_DRAM_TIMINGS_DDR3_1066F_1333H)
|
||||
# if CONFIG_DRAM_CLK <= 360 /* DDR3-1066F @360MHz, timings: 6-5-5-14 */
|
||||
.cas = 6,
|
||||
.tpr0 = 0x268e5590,
|
||||
.tpr1 = 0xa090,
|
||||
.tpr2 = 0x22a00,
|
||||
.emr2 = 0x0,
|
||||
# elif CONFIG_DRAM_CLK <= 384 /* DDR3-1066F @384MHz, timings: 6-6-6-15 */
|
||||
.cas = 6,
|
||||
.tpr0 = 0x288f6690,
|
||||
.tpr1 = 0xa0a0,
|
||||
.tpr2 = 0x22a00,
|
||||
.emr2 = 0x0,
|
||||
# elif CONFIG_DRAM_CLK <= 396 /* DDR3-1066F @396MHz, timings: 6-6-6-15 */
|
||||
.cas = 6,
|
||||
.tpr0 = 0x2a8f6690,
|
||||
.tpr1 = 0xa0a0,
|
||||
.tpr2 = 0x22a00,
|
||||
.emr2 = 0x0,
|
||||
# elif CONFIG_DRAM_CLK <= 408 /* DDR3-1066F @408MHz, timings: 7-6-6-16 */
|
||||
.cas = 7,
|
||||
.tpr0 = 0x2ab06690,
|
||||
.tpr1 = 0xa0a8,
|
||||
.tpr2 = 0x22a00,
|
||||
.emr2 = 0x8,
|
||||
# elif CONFIG_DRAM_CLK <= 432 /* DDR3-1066F @432MHz, timings: 7-6-6-17 */
|
||||
.cas = 7,
|
||||
.tpr0 = 0x2cb16690,
|
||||
.tpr1 = 0xa0b0,
|
||||
.tpr2 = 0x22e00,
|
||||
.emr2 = 0x8,
|
||||
# elif CONFIG_DRAM_CLK <= 456 /* DDR3-1066F @456MHz, timings: 7-6-6-18 */
|
||||
.cas = 7,
|
||||
.tpr0 = 0x30b26690,
|
||||
.tpr1 = 0xa0b8,
|
||||
.tpr2 = 0x22e00,
|
||||
.emr2 = 0x8,
|
||||
# elif CONFIG_DRAM_CLK <= 468 /* DDR3-1066F @468MHz, timings: 7-7-7-18 */
|
||||
.cas = 7,
|
||||
.tpr0 = 0x30b27790,
|
||||
.tpr1 = 0xa0c0,
|
||||
.tpr2 = 0x23200,
|
||||
.emr2 = 0x8,
|
||||
# elif CONFIG_DRAM_CLK <= 480 /* DDR3-1066F @480MHz, timings: 7-7-7-18 */
|
||||
.cas = 7,
|
||||
.tpr0 = 0x32b27790,
|
||||
.tpr1 = 0xa0c0,
|
||||
.tpr2 = 0x23200,
|
||||
.emr2 = 0x8,
|
||||
# elif CONFIG_DRAM_CLK <= 504 /* DDR3-1066F @504MHz, timings: 7-7-7-19 */
|
||||
.cas = 7,
|
||||
.tpr0 = 0x34d37790,
|
||||
.tpr1 = 0xa0d0,
|
||||
.tpr2 = 0x23600,
|
||||
.emr2 = 0x8,
|
||||
# elif CONFIG_DRAM_CLK <= 528 /* DDR3-1066F @528MHz, timings: 7-7-7-20 */
|
||||
.cas = 7,
|
||||
.tpr0 = 0x36d47790,
|
||||
.tpr1 = 0xa0d8,
|
||||
.tpr2 = 0x23600,
|
||||
.emr2 = 0x8,
|
||||
# elif CONFIG_DRAM_CLK <= 540 /* DDR3-1333H @540MHz, timings: 9-8-8-20 */
|
||||
.cas = 9,
|
||||
.tpr0 = 0x36b488b4,
|
||||
.tpr1 = 0xa0c8,
|
||||
.tpr2 = 0x2b600,
|
||||
.emr2 = 0x10,
|
||||
# elif CONFIG_DRAM_CLK <= 552 /* DDR3-1333H @552MHz, timings: 9-8-8-20 */
|
||||
.cas = 9,
|
||||
.tpr0 = 0x38b488b4,
|
||||
.tpr1 = 0xa0c8,
|
||||
.tpr2 = 0x2ba00,
|
||||
.emr2 = 0x10,
|
||||
# elif CONFIG_DRAM_CLK <= 576 /* DDR3-1333H @576MHz, timings: 9-8-8-21 */
|
||||
.cas = 9,
|
||||
.tpr0 = 0x3ab588b4,
|
||||
.tpr1 = 0xa0d0,
|
||||
.tpr2 = 0x2ba00,
|
||||
.emr2 = 0x10,
|
||||
# elif CONFIG_DRAM_CLK <= 600 /* DDR3-1333H @600MHz, timings: 9-9-9-22 */
|
||||
.cas = 9,
|
||||
.tpr0 = 0x3cb699b4,
|
||||
.tpr1 = 0xa0d8,
|
||||
.tpr2 = 0x2be00,
|
||||
.emr2 = 0x10,
|
||||
# elif CONFIG_DRAM_CLK <= 624 /* DDR3-1333H @624MHz, timings: 9-9-9-23 */
|
||||
.cas = 9,
|
||||
.tpr0 = 0x3eb799b4,
|
||||
.tpr1 = 0xa0e8,
|
||||
.tpr2 = 0x2be00,
|
||||
.emr2 = 0x10,
|
||||
# elif CONFIG_DRAM_CLK <= 648 /* DDR3-1333H @648MHz, timings: 9-9-9-24 */
|
||||
.cas = 9,
|
||||
.tpr0 = 0x42b899b4,
|
||||
.tpr1 = 0xa0f0,
|
||||
.tpr2 = 0x2c200,
|
||||
.emr2 = 0x10,
|
||||
# else
|
||||
# error CONFIG_DRAM_CLK is set too high
|
||||
# endif
|
||||
#elif defined(CONFIG_DRAM_TIMINGS_DDR3_800E_1066G_1333J)
|
||||
# if CONFIG_DRAM_CLK <= 360 /* DDR3-800E @360MHz, timings: 6-6-6-14 */
|
||||
.cas = 6,
|
||||
.tpr0 = 0x268e6690,
|
||||
.tpr1 = 0xa090,
|
||||
.tpr2 = 0x22a00,
|
||||
.emr2 = 0x0,
|
||||
# elif CONFIG_DRAM_CLK <= 384 /* DDR3-800E @384MHz, timings: 6-6-6-15 */
|
||||
.cas = 6,
|
||||
.tpr0 = 0x2a8f6690,
|
||||
.tpr1 = 0xa0a0,
|
||||
.tpr2 = 0x22a00,
|
||||
.emr2 = 0x0,
|
||||
# elif CONFIG_DRAM_CLK <= 396 /* DDR3-800E @396MHz, timings: 6-6-6-15 */
|
||||
.cas = 6,
|
||||
.tpr0 = 0x2a8f6690,
|
||||
.tpr1 = 0xa0a0,
|
||||
.tpr2 = 0x22a00,
|
||||
.emr2 = 0x0,
|
||||
# elif CONFIG_DRAM_CLK <= 408 /* DDR3-1066G @408MHz, timings: 8-7-7-16 */
|
||||
.cas = 8,
|
||||
.tpr0 = 0x2cb07790,
|
||||
.tpr1 = 0xa0a8,
|
||||
.tpr2 = 0x22a00,
|
||||
.emr2 = 0x8,
|
||||
# elif CONFIG_DRAM_CLK <= 432 /* DDR3-1066G @432MHz, timings: 8-7-7-17 */
|
||||
.cas = 8,
|
||||
.tpr0 = 0x2eb17790,
|
||||
.tpr1 = 0xa0b0,
|
||||
.tpr2 = 0x22e00,
|
||||
.emr2 = 0x8,
|
||||
# elif CONFIG_DRAM_CLK <= 456 /* DDR3-1066G @456MHz, timings: 8-7-7-18 */
|
||||
.cas = 8,
|
||||
.tpr0 = 0x30b27790,
|
||||
.tpr1 = 0xa0b8,
|
||||
.tpr2 = 0x22e00,
|
||||
.emr2 = 0x8,
|
||||
# elif CONFIG_DRAM_CLK <= 468 /* DDR3-1066G @468MHz, timings: 8-8-8-18 */
|
||||
.cas = 8,
|
||||
.tpr0 = 0x32b28890,
|
||||
.tpr1 = 0xa0c0,
|
||||
.tpr2 = 0x23200,
|
||||
.emr2 = 0x8,
|
||||
# elif CONFIG_DRAM_CLK <= 480 /* DDR3-1066G @480MHz, timings: 8-8-8-18 */
|
||||
.cas = 8,
|
||||
.tpr0 = 0x34b28890,
|
||||
.tpr1 = 0xa0c0,
|
||||
.tpr2 = 0x23200,
|
||||
.emr2 = 0x8,
|
||||
# elif CONFIG_DRAM_CLK <= 504 /* DDR3-1066G @504MHz, timings: 8-8-8-19 */
|
||||
.cas = 8,
|
||||
.tpr0 = 0x36d38890,
|
||||
.tpr1 = 0xa0d0,
|
||||
.tpr2 = 0x23600,
|
||||
.emr2 = 0x8,
|
||||
# elif CONFIG_DRAM_CLK <= 528 /* DDR3-1066G @528MHz, timings: 8-8-8-20 */
|
||||
.cas = 8,
|
||||
.tpr0 = 0x38d48890,
|
||||
.tpr1 = 0xa0d8,
|
||||
.tpr2 = 0x23600,
|
||||
.emr2 = 0x8,
|
||||
# elif CONFIG_DRAM_CLK <= 540 /* DDR3-1333J @540MHz, timings: 10-9-9-20 */
|
||||
.cas = 10,
|
||||
.tpr0 = 0x38b499b4,
|
||||
.tpr1 = 0xa0c8,
|
||||
.tpr2 = 0x2b600,
|
||||
.emr2 = 0x10,
|
||||
# elif CONFIG_DRAM_CLK <= 552 /* DDR3-1333J @552MHz, timings: 10-9-9-20 */
|
||||
.cas = 10,
|
||||
.tpr0 = 0x3ab499b4,
|
||||
.tpr1 = 0xa0c8,
|
||||
.tpr2 = 0x2ba00,
|
||||
.emr2 = 0x10,
|
||||
# elif CONFIG_DRAM_CLK <= 576 /* DDR3-1333J @576MHz, timings: 10-9-9-21 */
|
||||
.cas = 10,
|
||||
.tpr0 = 0x3cb599b4,
|
||||
.tpr1 = 0xa0d0,
|
||||
.tpr2 = 0x2ba00,
|
||||
.emr2 = 0x10,
|
||||
# elif CONFIG_DRAM_CLK <= 600 /* DDR3-1333J @600MHz, timings: 10-9-9-22 */
|
||||
.cas = 10,
|
||||
.tpr0 = 0x3eb699b4,
|
||||
.tpr1 = 0xa0d8,
|
||||
.tpr2 = 0x2be00,
|
||||
.emr2 = 0x10,
|
||||
# elif CONFIG_DRAM_CLK <= 624 /* DDR3-1333J @624MHz, timings: 10-10-10-23 */
|
||||
.cas = 10,
|
||||
.tpr0 = 0x40b7aab4,
|
||||
.tpr1 = 0xa0e8,
|
||||
.tpr2 = 0x2be00,
|
||||
.emr2 = 0x10,
|
||||
# elif CONFIG_DRAM_CLK <= 648 /* DDR3-1333J @648MHz, timings: 10-10-10-24 */
|
||||
.cas = 10,
|
||||
.tpr0 = 0x44b8aab4,
|
||||
.tpr1 = 0xa0f0,
|
||||
.tpr2 = 0x2c200,
|
||||
.emr2 = 0x10,
|
||||
# else
|
||||
# error CONFIG_DRAM_CLK is set too high
|
||||
# endif
|
||||
#else
|
||||
# error CONFIG_DRAM_TIMINGS_* is not defined
|
||||
#endif
|
|
@ -24,20 +24,13 @@ int sunxi_gmac_initialize(bd_t *bis)
|
|||
#ifdef CONFIG_RGMII
|
||||
setbits_le32(&ccm->gmac_clk_cfg, CCM_GMAC_CTRL_TX_CLK_SRC_INT_RGMII |
|
||||
CCM_GMAC_CTRL_GPIT_RGMII);
|
||||
setbits_le32(&ccm->gmac_clk_cfg,
|
||||
CCM_GMAC_CTRL_TX_CLK_DELAY(CONFIG_GMAC_TX_DELAY));
|
||||
#else
|
||||
setbits_le32(&ccm->gmac_clk_cfg, CCM_GMAC_CTRL_TX_CLK_SRC_MII |
|
||||
CCM_GMAC_CTRL_GPIT_MII);
|
||||
#endif
|
||||
|
||||
/*
|
||||
* In order for the gmac nic to work reliable on the Bananapi, we
|
||||
* need to set bits 10-12 GTXDC "GMAC Transmit Clock Delay Chain"
|
||||
* of the GMAC clk register to 3.
|
||||
*/
|
||||
#if defined CONFIG_TARGET_BANANAPI || defined CONFIG_TARGET_BANANAPRO
|
||||
setbits_le32(&ccm->gmac_clk_cfg, 0x3 << 10);
|
||||
#endif
|
||||
|
||||
#ifndef CONFIG_MACH_SUN6I
|
||||
/* Configure pin mux settings for GMAC */
|
||||
for (pin = SUNXI_GPA(0); pin <= SUNXI_GPA(16); pin++) {
|
||||
|
|
|
@ -8,4 +8,6 @@ CONFIG_USB1_VBUS_PIN="PB10"
|
|||
+S:CONFIG_ARM=y
|
||||
+S:CONFIG_ARCH_SUNXI=y
|
||||
+S:CONFIG_MACH_SUN5I=y
|
||||
+S:CONFIG_TARGET_A10S_OLINUXINO_M=y
|
||||
+S:CONFIG_DRAM_CLK=432
|
||||
+S:CONFIG_DRAM_ZQ=123
|
||||
+S:CONFIG_DRAM_EMR1=4
|
||||
|
|
|
@ -4,6 +4,7 @@ CONFIG_FDTFILE="sun5i-a13-olinuxino-micro.dtb"
|
|||
CONFIG_USB1_VBUS_PIN="PG11"
|
||||
CONFIG_VIDEO_HDMI=n
|
||||
CONFIG_VIDEO_VGA_VIA_LCD=y
|
||||
CONFIG_VIDEO_VGA_VIA_LCD_FORCE_SYNC_ACTIVE_HIGH=y
|
||||
# For use with the Olimex 7" LCD module, adjust timings for other displays
|
||||
# Set video-mode=sunxi:800x600-24@60,monitor=lcd in the env. to enable
|
||||
CONFIG_VIDEO_LCD_MODE="x:800,y:480,depth:18,pclk_khz:33000,le:16,ri:209,up:22,lo:22,hs:30,vs:1,sync:3,vmode:0"
|
||||
|
@ -12,4 +13,6 @@ CONFIG_VIDEO_LCD_BL_PWM="PB2"
|
|||
+S:CONFIG_ARM=y
|
||||
+S:CONFIG_ARCH_SUNXI=y
|
||||
+S:CONFIG_MACH_SUN5I=y
|
||||
+S:CONFIG_TARGET_A13_OLINUXINOM=y
|
||||
+S:CONFIG_DRAM_CLK=408
|
||||
+S:CONFIG_DRAM_ZQ=123
|
||||
+S:CONFIG_DRAM_EMR1=0
|
||||
|
|
|
@ -4,6 +4,7 @@ CONFIG_FDTFILE="sun5i-a13-olinuxino.dtb"
|
|||
CONFIG_USB1_VBUS_PIN="PG11"
|
||||
CONFIG_VIDEO_HDMI=n
|
||||
CONFIG_VIDEO_VGA_VIA_LCD=y
|
||||
CONFIG_VIDEO_VGA_VIA_LCD_FORCE_SYNC_ACTIVE_HIGH=y
|
||||
# For use with the Olimex 7" LCD module, adjust timings for other displays
|
||||
# Set video-mode=sunxi:800x600-24@60,monitor=lcd in the env. to enable
|
||||
CONFIG_VIDEO_LCD_MODE="x:800,y:480,depth:18,pclk_khz:33000,le:16,ri:209,up:22,lo:22,hs:30,vs:1,sync:3,vmode:0"
|
||||
|
@ -12,4 +13,6 @@ CONFIG_VIDEO_LCD_BL_PWM="PB2"
|
|||
+S:CONFIG_ARM=y
|
||||
+S:CONFIG_ARCH_SUNXI=y
|
||||
+S:CONFIG_MACH_SUN5I=y
|
||||
+S:CONFIG_TARGET_A13_OLINUXINO=y
|
||||
+S:CONFIG_DRAM_CLK=408
|
||||
+S:CONFIG_DRAM_ZQ=123
|
||||
+S:CONFIG_DRAM_EMR1=0
|
||||
|
|
|
@ -4,7 +4,6 @@ CONFIG_FDTFILE="sun7i-a20-olinuxino-lime2.dtb"
|
|||
+S:CONFIG_ARM=y
|
||||
+S:CONFIG_ARCH_SUNXI=y
|
||||
+S:CONFIG_MACH_SUN7I=y
|
||||
+S:CONFIG_TARGET_A20_OLINUXINO_L2=y
|
||||
+S:CONFIG_DRAM_CLK=480
|
||||
+S:CONFIG_DRAM_ZQ=127
|
||||
+S:CONFIG_DRAM_EMR1=4
|
||||
|
|
|
@ -4,7 +4,6 @@ CONFIG_FDTFILE="sun7i-a20-olinuxino-lime.dtb"
|
|||
+S:CONFIG_ARM=y
|
||||
+S:CONFIG_ARCH_SUNXI=y
|
||||
+S:CONFIG_MACH_SUN7I=y
|
||||
+S:CONFIG_TARGET_A20_OLINUXINO_L=y
|
||||
+S:CONFIG_DRAM_CLK=480
|
||||
+S:CONFIG_DRAM_ZQ=127
|
||||
+S:CONFIG_DRAM_EMR1=4
|
||||
|
|
|
@ -8,7 +8,6 @@ CONFIG_VIDEO_VGA=y
|
|||
+S:CONFIG_ARM=y
|
||||
+S:CONFIG_ARCH_SUNXI=y
|
||||
+S:CONFIG_MACH_SUN7I=y
|
||||
+S:CONFIG_TARGET_A20_OLINUXINO_M=y
|
||||
+S:CONFIG_DRAM_CLK=384
|
||||
+S:CONFIG_DRAM_ZQ=127
|
||||
+S:CONFIG_DRAM_EMR1=4
|
||||
|
|
|
@ -5,4 +5,6 @@ CONFIG_USB1_VBUS_PIN="PG13"
|
|||
+S:CONFIG_ARM=y
|
||||
+S:CONFIG_ARCH_SUNXI=y
|
||||
+S:CONFIG_MACH_SUN5I=y
|
||||
+S:CONFIG_TARGET_AUXTEK_T004=y
|
||||
+S:CONFIG_DRAM_CLK=432
|
||||
+S:CONFIG_DRAM_ZQ=123
|
||||
+S:CONFIG_DRAM_EMR1=4
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
CONFIG_SPL=y
|
||||
CONFIG_SYS_EXTRA_OPTIONS="AXP209_POWER,SUNXI_GMAC,RGMII,MACPWR=SUNXI_GPH(23),AHCI,USB_EHCI"
|
||||
CONFIG_FDTFILE="sun7i-a20-bananapi.dtb"
|
||||
CONFIG_GMAC_TX_DELAY=3
|
||||
+S:CONFIG_ARM=y
|
||||
+S:CONFIG_ARCH_SUNXI=y
|
||||
+S:CONFIG_MACH_SUN7I=y
|
||||
+S:CONFIG_TARGET_BANANAPI=y
|
||||
+S:CONFIG_DRAM_CLK=432
|
||||
+S:CONFIG_DRAM_ZQ=127
|
||||
+S:CONFIG_DRAM_EMR1=4
|
||||
|
|
|
@ -3,10 +3,10 @@ CONFIG_SYS_EXTRA_OPTIONS="AXP209_POWER,SUNXI_GMAC,RGMII,MACPWR=SUNXI_GPH(23),AHC
|
|||
CONFIG_FDTFILE="sun7i-a20-bananapro.dtb"
|
||||
CONFIG_USB1_VBUS_PIN="PH0"
|
||||
CONFIG_USB2_VBUS_PIN="PH1"
|
||||
CONFIG_GMAC_TX_DELAY=3
|
||||
+S:CONFIG_ARM=y
|
||||
+S:CONFIG_ARCH_SUNXI=y
|
||||
+S:CONFIG_MACH_SUN7I=y
|
||||
+S:CONFIG_TARGET_BANANAPRO=y
|
||||
+S:CONFIG_DRAM_CLK=432
|
||||
+S:CONFIG_DRAM_ZQ=127
|
||||
+S:CONFIG_DRAM_EMR1=4
|
||||
|
|
|
@ -4,7 +4,6 @@ CONFIG_FDTFILE="sun7i-a20-cubieboard2.dtb"
|
|||
+S:CONFIG_ARM=y
|
||||
+S:CONFIG_ARCH_SUNXI=y
|
||||
+S:CONFIG_MACH_SUN7I=y
|
||||
+S:CONFIG_TARGET_CUBIEBOARD2=y
|
||||
+S:CONFIG_DRAM_CLK=480
|
||||
+S:CONFIG_DRAM_ZQ=127
|
||||
+S:CONFIG_DRAM_EMR1=4
|
||||
|
|
|
@ -5,7 +5,6 @@ CONFIG_VIDEO_VGA=y
|
|||
+S:CONFIG_ARM=y
|
||||
+S:CONFIG_ARCH_SUNXI=y
|
||||
+S:CONFIG_MACH_SUN7I=y
|
||||
+S:CONFIG_TARGET_CUBIETRUCK=y
|
||||
+S:CONFIG_DRAM_CLK=432
|
||||
+S:CONFIG_DRAM_ZQ=127
|
||||
+S:CONFIG_DRAM_EMR1=4
|
||||
|
|
|
@ -6,7 +6,8 @@ CONFIG_SYS_EXTRA_OPTIONS="AXP209_POWER"
|
|||
CONFIG_FDTFILE="sun4i-a10-hyundai-a7hd.dtb"
|
||||
CONFIG_USB_MUSB_SUNXI=y
|
||||
CONFIG_USB0_VBUS_PIN="PB09"
|
||||
CONFIG_USB2_VBUS_PIN=""
|
||||
CONFIG_USB1_VBUS_PIN=""
|
||||
CONFIG_USB2_VBUS_PIN="PH6"
|
||||
CONFIG_VIDEO_LCD_MODE="x:1024,y:600,depth:18,pclk_khz:51000,le:45,ri:274,up:22,lo:12,hs:1,vs:1,sync:3,vmode:0"
|
||||
CONFIG_VIDEO_LCD_DCLK_PHASE=1
|
||||
CONFIG_VIDEO_LCD_POWER="PH2"
|
||||
|
|
15
configs/Inet_86VS_defconfig
Normal file
15
configs/Inet_86VS_defconfig
Normal file
|
@ -0,0 +1,15 @@
|
|||
CONFIG_SPL=y
|
||||
CONFIG_SYS_EXTRA_OPTIONS="AXP209_POWER"
|
||||
CONFIG_FDTFILE="sun5i-a13-inet-86vs.dtb"
|
||||
CONFIG_USB_MUSB_SUNXI=y
|
||||
CONFIG_USB0_VBUS_PIN="PG12"
|
||||
CONFIG_VIDEO_LCD_MODE="x:800,y:480,depth:18,pclk_khz:33000,le:45,ri:209,up:22,lo:22,hs:1,vs:1,sync:3,vmode:0"
|
||||
CONFIG_VIDEO_LCD_POWER="AXP0-0"
|
||||
CONFIG_VIDEO_LCD_BL_EN="AXP0-1"
|
||||
CONFIG_VIDEO_LCD_BL_PWM="PB2"
|
||||
+S:CONFIG_ARM=y
|
||||
+S:CONFIG_ARCH_SUNXI=y
|
||||
+S:CONFIG_MACH_SUN5I=y
|
||||
+S:CONFIG_DRAM_CLK=408
|
||||
+S:CONFIG_DRAM_ZQ=123
|
||||
+S:CONFIG_DRAM_EMR1=4
|
|
@ -11,7 +11,6 @@ CONFIG_VIDEO_LCD_BL_PWM="PH0"
|
|||
+S:CONFIG_ARM=y
|
||||
+S:CONFIG_ARCH_SUNXI=y
|
||||
+S:CONFIG_MACH_SUN8I=y
|
||||
+S:CONFIG_TARGET_IPPO_Q8H_V5=y
|
||||
+S:CONFIG_DRAM_CLK=480
|
||||
# zq = 0xf777
|
||||
+S:CONFIG_DRAM_ZQ=63351
|
||||
|
|
11
configs/Linksprite_pcDuino3_Nano_defconfig
Normal file
11
configs/Linksprite_pcDuino3_Nano_defconfig
Normal file
|
@ -0,0 +1,11 @@
|
|||
CONFIG_SPL=y
|
||||
CONFIG_SYS_EXTRA_OPTIONS="AXP209_POWER,SUNXI_GMAC,RGMII,AHCI,SATAPWR=SUNXI_GPH(2),USB_EHCI"
|
||||
CONFIG_FDTFILE="sun7i-a20-pcduino3-nano.dtb"
|
||||
CONFIG_GMAC_TX_DELAY=3
|
||||
CONFIG_USB1_VBUS_PIN="PH11"
|
||||
+S:CONFIG_ARM=y
|
||||
+S:CONFIG_ARCH_SUNXI=y
|
||||
+S:CONFIG_MACH_SUN7I=y
|
||||
+S:CONFIG_DRAM_CLK=408
|
||||
+S:CONFIG_DRAM_ZQ=122
|
||||
+S:CONFIG_DRAM_EMR1=4
|
|
@ -4,7 +4,6 @@ CONFIG_FDTFILE="sun7i-a20-pcduino3.dtb"
|
|||
+S:CONFIG_ARM=y
|
||||
+S:CONFIG_ARCH_SUNXI=y
|
||||
+S:CONFIG_MACH_SUN7I=y
|
||||
+S:CONFIG_TARGET_PCDUINO3=y
|
||||
+S:CONFIG_DRAM_CLK=480
|
||||
+S:CONFIG_DRAM_ZQ=122
|
||||
+S:CONFIG_DRAM_EMR1=4
|
||||
|
|
|
@ -8,7 +8,6 @@ CONFIG_OF_SEPARATE=y
|
|||
+S:CONFIG_ARM=y
|
||||
+S:CONFIG_ARCH_SUNXI=y
|
||||
+S:CONFIG_MACH_SUN7I=y
|
||||
+S:CONFIG_TARGET_PCDUINO3=y
|
||||
+S:CONFIG_DRAM_CLK=480
|
||||
+S:CONFIG_DRAM_ZQ=122
|
||||
+S:CONFIG_DRAM_EMR1=4
|
||||
|
|
|
@ -1,3 +1,11 @@
|
|||
# The MSI Primo73 is an A20 based tablet, with 1G RAM, 16G NAND,
|
||||
# 1024x600 TN LCD display, mono speaker, 0.3 MP front camera, 2.0 MP
|
||||
# rear camera, 3000 mAh battery, gt911 touchscreen, mma8452 accelerometer
|
||||
# and rtl8188etv usb wifi. Has "power", "volume+" and "volume-" buttons
|
||||
# (both volume buttons are also connected to the UBOOT_SEL pin). The
|
||||
# external connectors are represented by MicroSD slot, MiniHDMI, MicroUSB
|
||||
# OTG and 3.5mm headphone jack. More details are available at
|
||||
# http://linux-sunxi.org/MSI_Primo73
|
||||
CONFIG_SPL=y
|
||||
CONFIG_SYS_EXTRA_OPTIONS="AXP209_POWER"
|
||||
CONFIG_FDTFILE="sun7i-a20-primo73.dtb"
|
||||
|
@ -10,7 +18,6 @@ CONFIG_USB_KEYBOARD=n
|
|||
+S:CONFIG_ARM=y
|
||||
+S:CONFIG_ARCH_SUNXI=y
|
||||
+S:CONFIG_MACH_SUN7I=y
|
||||
+S:CONFIG_TARGET_MSI_PRIMO73=y
|
||||
+S:CONFIG_DRAM_CLK=384
|
||||
+S:CONFIG_DRAM_ZQ=127
|
||||
+S:CONFIG_DRAM_EMR1=4
|
||||
|
|
|
@ -7,7 +7,6 @@ CONFIG_VIDEO_VGA=y
|
|||
+S:CONFIG_ARM=y
|
||||
+S:CONFIG_ARCH_SUNXI=y
|
||||
+S:CONFIG_MACH_SUN7I=y
|
||||
+S:CONFIG_TARGET_MELE_M3=y
|
||||
+S:CONFIG_DRAM_CLK=384
|
||||
+S:CONFIG_DRAM_ZQ=127
|
||||
+S:CONFIG_DRAM_EMR1=4
|
||||
|
|
15
configs/TZX-Q8-713B7_defconfig
Normal file
15
configs/TZX-Q8-713B7_defconfig
Normal file
|
@ -0,0 +1,15 @@
|
|||
CONFIG_SPL=y
|
||||
CONFIG_SYS_EXTRA_OPTIONS="CONS_INDEX=2,AXP209_POWER"
|
||||
CONFIG_FDTFILE="sun5i-a13-tzx-q8-713b7.dtb"
|
||||
CONFIG_USB_MUSB_SUNXI=y
|
||||
CONFIG_USB0_VBUS_PIN="PG12"
|
||||
CONFIG_VIDEO_LCD_MODE="x:800,y:480,depth:18,pclk_khz:33000,le:87,ri:40,up:31,lo:13,hs:1,vs:1,sync:3,vmode:0"
|
||||
CONFIG_VIDEO_LCD_POWER="AXP0-0"
|
||||
CONFIG_VIDEO_LCD_BL_EN="AXP0-1"
|
||||
CONFIG_VIDEO_LCD_BL_PWM="PB2"
|
||||
+S:CONFIG_ARM=y
|
||||
+S:CONFIG_ARCH_SUNXI=y
|
||||
+S:CONFIG_MACH_SUN5I=y
|
||||
+S:CONFIG_DRAM_CLK=408
|
||||
+S:CONFIG_DRAM_ZQ=123
|
||||
+S:CONFIG_DRAM_EMR1=4
|
|
@ -4,7 +4,6 @@ CONFIG_FDTFILE="sun7i-a20-i12-tvbox.dtb"
|
|||
+S:CONFIG_ARM=y
|
||||
+S:CONFIG_ARCH_SUNXI=y
|
||||
+S:CONFIG_MACH_SUN7I=y
|
||||
+S:CONFIG_TARGET_I12_TVBOX=y
|
||||
+S:CONFIG_DRAM_CLK=384
|
||||
+S:CONFIG_DRAM_ZQ=127
|
||||
+S:CONFIG_DRAM_EMR1=4
|
||||
|
|
|
@ -5,7 +5,6 @@ CONFIG_USB1_VBUS_PIN="PB10"
|
|||
+S:CONFIG_ARM=y
|
||||
+S:CONFIG_ARCH_SUNXI=y
|
||||
+S:CONFIG_MACH_SUN5I=y
|
||||
+S:CONFIG_TARGET_MK802_A10S=y
|
||||
+S:CONFIG_DRAM_CLK=432
|
||||
+S:CONFIG_DRAM_ZQ=123
|
||||
+S:CONFIG_DRAM_EMR1=0
|
||||
|
|
|
@ -5,4 +5,6 @@ CONFIG_USB1_VBUS_PIN="PG13"
|
|||
+S:CONFIG_ARM=y
|
||||
+S:CONFIG_ARCH_SUNXI=y
|
||||
+S:CONFIG_MACH_SUN5I=y
|
||||
+S:CONFIG_TARGET_R7DONGLE=y
|
||||
+S:CONFIG_DRAM_CLK=384
|
||||
+S:CONFIG_DRAM_ZQ=123
|
||||
+S:CONFIG_DRAM_EMR1=4
|
||||
|
|
|
@ -215,7 +215,7 @@ static int mmc_config_clock(struct mmc *mmc)
|
|||
return 0;
|
||||
}
|
||||
|
||||
static void mmc_set_ios(struct mmc *mmc)
|
||||
static void sunxi_mmc_set_ios(struct mmc *mmc)
|
||||
{
|
||||
struct sunxi_mmc_host *mmchost = mmc->priv;
|
||||
|
||||
|
@ -237,7 +237,7 @@ static void mmc_set_ios(struct mmc *mmc)
|
|||
writel(0x0, &mmchost->reg->width);
|
||||
}
|
||||
|
||||
static int mmc_core_init(struct mmc *mmc)
|
||||
static int sunxi_mmc_core_init(struct mmc *mmc)
|
||||
{
|
||||
struct sunxi_mmc_host *mmchost = mmc->priv;
|
||||
|
||||
|
@ -298,8 +298,8 @@ static int mmc_rint_wait(struct mmc *mmc, unsigned int timeout_msecs,
|
|||
return 0;
|
||||
}
|
||||
|
||||
static int mmc_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd,
|
||||
struct mmc_data *data)
|
||||
static int sunxi_mmc_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd,
|
||||
struct mmc_data *data)
|
||||
{
|
||||
struct sunxi_mmc_host *mmchost = mmc->priv;
|
||||
unsigned int cmdval = SUNXI_MMC_CMD_START;
|
||||
|
@ -432,9 +432,9 @@ static int sunxi_mmc_getcd(struct mmc *mmc)
|
|||
}
|
||||
|
||||
static const struct mmc_ops sunxi_mmc_ops = {
|
||||
.send_cmd = mmc_send_cmd,
|
||||
.set_ios = mmc_set_ios,
|
||||
.init = mmc_core_init,
|
||||
.send_cmd = sunxi_mmc_send_cmd,
|
||||
.set_ios = sunxi_mmc_set_ios,
|
||||
.init = sunxi_mmc_core_init,
|
||||
.getcd = sunxi_mmc_getcd,
|
||||
};
|
||||
|
||||
|
|
|
@ -29,9 +29,7 @@ static int pmic_bus_init(void)
|
|||
#else
|
||||
int ret;
|
||||
|
||||
rsb_init();
|
||||
|
||||
ret = rsb_set_device_mode(AXP223_DEVICE_MODE_DATA);
|
||||
ret = rsb_init();
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
|
|
|
@ -645,7 +645,8 @@ static int sunxi_lcdc_get_clk_delay(const struct ctfb_res_modes *mode)
|
|||
return (delay > 30) ? 30 : delay;
|
||||
}
|
||||
|
||||
static void sunxi_lcdc_tcon0_mode_set(const struct ctfb_res_modes *mode)
|
||||
static void sunxi_lcdc_tcon0_mode_set(const struct ctfb_res_modes *mode,
|
||||
bool for_ext_vga_dac)
|
||||
{
|
||||
struct sunxi_lcdc_reg * const lcdc =
|
||||
(struct sunxi_lcdc_reg *)SUNXI_LCD0_BASE;
|
||||
|
@ -719,6 +720,11 @@ static void sunxi_lcdc_tcon0_mode_set(const struct ctfb_res_modes *mode)
|
|||
val |= SUNXI_LCDC_TCON_HSYNC_MASK;
|
||||
if (!(mode->sync & FB_SYNC_VERT_HIGH_ACT))
|
||||
val |= SUNXI_LCDC_TCON_VSYNC_MASK;
|
||||
|
||||
#ifdef CONFIG_VIDEO_VGA_VIA_LCD_FORCE_SYNC_ACTIVE_HIGH
|
||||
if (for_ext_vga_dac)
|
||||
val = 0;
|
||||
#endif
|
||||
writel(val, &lcdc->tcon0_io_polarity);
|
||||
|
||||
writel(0, &lcdc->tcon0_io_tristate);
|
||||
|
@ -1015,7 +1021,7 @@ static void sunxi_mode_set(const struct ctfb_res_modes *mode,
|
|||
hitachi_tx18d42vm_init();
|
||||
}
|
||||
sunxi_composer_mode_set(mode, address);
|
||||
sunxi_lcdc_tcon0_mode_set(mode);
|
||||
sunxi_lcdc_tcon0_mode_set(mode, false);
|
||||
sunxi_composer_enable();
|
||||
sunxi_lcdc_enable();
|
||||
#ifdef CONFIG_VIDEO_LCD_SSD2828
|
||||
|
@ -1033,7 +1039,7 @@ static void sunxi_mode_set(const struct ctfb_res_modes *mode,
|
|||
sunxi_vga_enable();
|
||||
#elif defined CONFIG_VIDEO_VGA_VIA_LCD
|
||||
sunxi_composer_mode_set(mode, address);
|
||||
sunxi_lcdc_tcon0_mode_set(mode);
|
||||
sunxi_lcdc_tcon0_mode_set(mode, true);
|
||||
sunxi_composer_enable();
|
||||
sunxi_lcdc_enable();
|
||||
sunxi_vga_external_dac_enable();
|
||||
|
|
|
@ -12,7 +12,6 @@
|
|||
|
||||
#define AXP223_DEVICE_ADDR 0x3a3
|
||||
#define AXP223_RUNTIME_ADDR 0x2d
|
||||
#define AXP223_DEVICE_MODE_DATA 0x7c3e00
|
||||
|
||||
/* Page 0 addresses */
|
||||
#define AXP221_CHIP_ID 0x03
|
||||
|
|
|
@ -181,7 +181,10 @@
|
|||
#define CONFIG_SYS_SPL_MALLOC_SIZE 0x00080000 /* 512 KiB */
|
||||
|
||||
/* I2C */
|
||||
#if defined CONFIG_AXP152_POWER || defined CONFIG_AXP209_POWER
|
||||
#define CONFIG_SPL_I2C_SUPPORT
|
||||
#endif
|
||||
|
||||
#define CONFIG_SYS_I2C
|
||||
#define CONFIG_SYS_I2C_MVTWSI
|
||||
#define CONFIG_SYS_I2C_SPEED 400000
|
||||
|
|
Loading…
Reference in a new issue