mirror of
https://github.com/u-boot/u-boot.git
synced 2024-11-26 13:44:29 +08:00
rockchip: arm64: rk3399: add ddr controller driver
RK3399 support DDR3, LPDDR3, DDR4 sdram, this patch is porting from coreboot, support 4GB lpddr3 in this version. Signed-off-by: Kever Yang <kever.yang@rock-chips.com> Added rockchip: tag: Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
26d5ee8f9b
commit
fa437430ad
1536
arch/arm/dts/rk3399-sdram-lpddr3-4GB-1600.dtsi
Normal file
1536
arch/arm/dts/rk3399-sdram-lpddr3-4GB-1600.dtsi
Normal file
File diff suppressed because it is too large
Load Diff
119
arch/arm/include/asm/arch-rockchip/sdram_rk3399.h
Normal file
119
arch/arm/include/asm/arch-rockchip/sdram_rk3399.h
Normal file
@ -0,0 +1,119 @@
|
||||
/*
|
||||
* Copyright (C) 2016-2017 Rockchip Electronics Co., Ltd
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-2.0+
|
||||
*/
|
||||
|
||||
#ifndef _ASM_ARCH_SDRAM_RK3399_H
|
||||
#define _ASM_ARCH_SDRAM_RK3399_H
|
||||
|
||||
enum {
|
||||
DDR3 = 0x3,
|
||||
LPDDR2 = 0x5,
|
||||
LPDDR3 = 0x6,
|
||||
LPDDR4 = 0x7,
|
||||
UNUSED = 0xFF
|
||||
};
|
||||
|
||||
struct rk3399_ddr_pctl_regs {
|
||||
u32 denali_ctl[332];
|
||||
};
|
||||
|
||||
struct rk3399_ddr_publ_regs {
|
||||
u32 denali_phy[959];
|
||||
};
|
||||
|
||||
struct rk3399_ddr_pi_regs {
|
||||
u32 denali_pi[200];
|
||||
};
|
||||
|
||||
struct rk3399_msch_regs {
|
||||
u32 coreid;
|
||||
u32 revisionid;
|
||||
u32 ddrconf;
|
||||
u32 ddrsize;
|
||||
u32 ddrtiminga0;
|
||||
u32 ddrtimingb0;
|
||||
u32 ddrtimingc0;
|
||||
u32 devtodev0;
|
||||
u32 reserved0[(0x110 - 0x20) / 4];
|
||||
u32 ddrmode;
|
||||
u32 reserved1[(0x1000 - 0x114) / 4];
|
||||
u32 agingx0;
|
||||
};
|
||||
|
||||
struct rk3399_msch_timings {
|
||||
u32 ddrtiminga0;
|
||||
u32 ddrtimingb0;
|
||||
u32 ddrtimingc0;
|
||||
u32 devtodev0;
|
||||
u32 ddrmode;
|
||||
u32 agingx0;
|
||||
};
|
||||
|
||||
struct rk3399_ddr_cic_regs {
|
||||
u32 cic_ctrl0;
|
||||
u32 cic_ctrl1;
|
||||
u32 cic_idle_th;
|
||||
u32 cic_cg_wait_th;
|
||||
u32 cic_status0;
|
||||
u32 cic_status1;
|
||||
u32 cic_ctrl2;
|
||||
u32 cic_ctrl3;
|
||||
u32 cic_ctrl4;
|
||||
};
|
||||
|
||||
/* DENALI_CTL_00 */
|
||||
#define START 1
|
||||
|
||||
/* DENALI_CTL_68 */
|
||||
#define PWRUP_SREFRESH_EXIT (1 << 16)
|
||||
|
||||
/* DENALI_CTL_274 */
|
||||
#define MEM_RST_VALID 1
|
||||
|
||||
struct rk3399_sdram_channel {
|
||||
unsigned int rank;
|
||||
/* dram column number, 0 means this channel is invalid */
|
||||
unsigned int col;
|
||||
/* dram bank number, 3:8bank, 2:4bank */
|
||||
unsigned int bk;
|
||||
/* channel buswidth, 2:32bit, 1:16bit, 0:8bit */
|
||||
unsigned int bw;
|
||||
/* die buswidth, 2:32bit, 1:16bit, 0:8bit */
|
||||
unsigned int dbw;
|
||||
/*
|
||||
* row_3_4 = 1: 6Gb or 12Gb die
|
||||
* row_3_4 = 0: normal die, power of 2
|
||||
*/
|
||||
unsigned int row_3_4;
|
||||
unsigned int cs0_row;
|
||||
unsigned int cs1_row;
|
||||
unsigned int ddrconfig;
|
||||
struct rk3399_msch_timings noc_timings;
|
||||
};
|
||||
|
||||
struct rk3399_base_params {
|
||||
unsigned int ddr_freq;
|
||||
unsigned int dramtype;
|
||||
unsigned int num_channels;
|
||||
unsigned int stride;
|
||||
unsigned int odt;
|
||||
};
|
||||
|
||||
struct rk3399_sdram_params {
|
||||
struct rk3399_sdram_channel ch[2];
|
||||
struct rk3399_base_params base;
|
||||
struct rk3399_ddr_pctl_regs pctl_regs;
|
||||
struct rk3399_ddr_pi_regs pi_regs;
|
||||
struct rk3399_ddr_publ_regs phy_regs;
|
||||
};
|
||||
|
||||
#define PI_CA_TRAINING (1 << 0)
|
||||
#define PI_WRITE_LEVELING (1 << 1)
|
||||
#define PI_READ_GATE_TRAINING (1 << 2)
|
||||
#define PI_READ_LEVELING (1 << 3)
|
||||
#define PI_WDQ_LEVELING (1 << 4)
|
||||
#define PI_FULL_TRAINING 0xff
|
||||
|
||||
#endif
|
@ -6,4 +6,5 @@
|
||||
|
||||
obj-y += clk_rk3399.o
|
||||
obj-y += rk3399.o
|
||||
obj-y += sdram_rk3399.o
|
||||
obj-y += syscon_rk3399.o
|
||||
|
@ -40,5 +40,6 @@ int arch_cpu_init(void)
|
||||
/* Emmc clock generator: disable the clock multipilier */
|
||||
rk_clrreg(GRF_EMMCCORE_CON11, 0x0ff);
|
||||
|
||||
printf("time %x, %x\n", readl(0xff8680a8), readl(0xff8680ac));
|
||||
return 0;
|
||||
}
|
||||
|
1321
arch/arm/mach-rockchip/rk3399/sdram_rk3399.c
Normal file
1321
arch/arm/mach-rockchip/rk3399/sdram_rk3399.c
Normal file
File diff suppressed because it is too large
Load Diff
42
doc/device-tree-bindings/clock/rockchip,rk3399-dmc.txt
Normal file
42
doc/device-tree-bindings/clock/rockchip,rk3399-dmc.txt
Normal file
@ -0,0 +1,42 @@
|
||||
Rockchip Dynamic Memory Controller Driver
|
||||
Required properties:
|
||||
- compatible: "rockchip,rk3399-dmc", "syscon"
|
||||
- rockchip,cru: this driver should access cru regs, so need get cru here
|
||||
- rockchip,pmucru: this driver should access pmucru regs, so need get pmucru here
|
||||
- rockchip,pmugrf: this driver should access pmugrf regs, so need get pmugrf here
|
||||
- rockchip,pmusgrf: this driver should access pmusgrf regs, so need get pmusgrf here
|
||||
- rockchip,cic: this driver should access cic regs, so need get cic here
|
||||
- reg: dynamic ram protocol controller(PCTL) address, PHY Independent(PI) address, phy controller(PHYCTL) address and memory schedule(MSCH) address
|
||||
- clock: must include clock specifiers corresponding to entries in the clock-names property.
|
||||
Must contain
|
||||
dmc_clk: for ddr working frequency
|
||||
- rockchip,sdram-params: SDRAM parameters, including all the information by ddr driver:
|
||||
Must contain
|
||||
Genarate by vendor tool and adjust for U-Boot dtsi.
|
||||
|
||||
Example:
|
||||
dmc: dmc {
|
||||
u-boot,dm-pre-reloc;
|
||||
compatible = "rockchip,rk3399-dmc";
|
||||
devfreq-events = <&dfi>;
|
||||
interrupts = <GIC_SPI 1 IRQ_TYPE_LEVEL_HIGH 0>;
|
||||
clocks = <&cru SCLK_DDRCLK>;
|
||||
clock-names = "dmc_clk";
|
||||
reg = <0x0 0xffa80000 0x0 0x0800
|
||||
0x0 0xffa80800 0x0 0x1800
|
||||
0x0 0xffa82000 0x0 0x2000
|
||||
0x0 0xffa84000 0x0 0x1000
|
||||
0x0 0xffa88000 0x0 0x0800
|
||||
0x0 0xffa88800 0x0 0x1800
|
||||
0x0 0xffa8a000 0x0 0x2000
|
||||
0x0 0xffa8c000 0x0 0x1000>;
|
||||
};
|
||||
|
||||
&dmc {
|
||||
rockchip,sdram-params = <
|
||||
0x2
|
||||
0xa
|
||||
0x3
|
||||
...
|
||||
>;
|
||||
};
|
Loading…
Reference in New Issue
Block a user