public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: York Sun <yorksun@freescale.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [Patch V8 12/17] armv8/ls1043ardb: Add LS1043ARDB board support
Date: Fri, 6 Nov 2015 12:11:24 -0800	[thread overview]
Message-ID: <563D096C.5090203@freescale.com> (raw)
In-Reply-To: <1445860077-20307-13-git-send-email-Qianyu.Gong@freescale.com>



On 10/26/2015 04:47 AM, Gong Qianyu wrote:
> From: Mingkai Hu <Mingkai.Hu@freescale.com>
> 
> LS1043ARDB Specification:
> -------------------------
> Memory subsystem:
>  * 2GByte DDR4 SDRAM (32bit bus)
>  * 128 Mbyte NOR flash single-chip memory
>  * 512 Mbyte NAND flash
>  * 16 Mbyte high-speed SPI flash
>  * SD connector to interface with the SD memory card
> 
> Ethernet:
>  * XFI 10G port
>  * QSGMII with 4x 1G ports
>  * Two RGMII ports
> 
> PCIe:
>  * PCIe2 (Lanes C) to mini-PCIe slot
>  * PCIe3 (Lanes D) to PCIe slot
> 
> USB 3.0: two super speed USB 3.0 type A ports
> 
> UART: supports two UARTs up to 115200 bps for console
> 
> Signed-off-by: Hou Zhiqiang <B48286@freescale.com>
> Signed-off-by: Li Yang <leoli@freescale.com>
> Signed-off-by: Mingkai Hu <Mingkai.Hu@freescale.com>
> Signed-off-by: York Sun <yorksun@freescale.com>
> Signed-off-by: Gong Qianyu <Qianyu.Gong@freescale.com>
> ---
> V8:
>  - No changes.
> V7:
>  - No change.
> V6:
>  - Move GIC SMMU macros out of ls1043a_common.h.
> V5:
>  - No change.
> V4: 
>  - Change arch to layerscape.
>  - Add PCIe support.
>  - Move SMMU_BASE, GICC_BASE, GICD_BASE to ls1043a_common.h.
> V3:
>  - Fix message typos.
>  - Add ddr model number in comments.
>  - Fix boot options in README.
>  - Remove some dead code.
> V2:
>  - Replaced ns_access.h with fsl_csu.h.
> 
>  arch/arm/Kconfig                                   |   7 +
>  arch/arm/cpu/armv8/fsl-layerscape/Makefile         |   4 +
>  arch/arm/cpu/armv8/fsl-layerscape/ls1043a_serdes.c |  86 ++++++++++
>  board/freescale/ls1043ardb/Kconfig                 |  16 ++
>  board/freescale/ls1043ardb/MAINTAINERS             |   7 +
>  board/freescale/ls1043ardb/Makefile                |   9 +
>  board/freescale/ls1043ardb/README                  |  85 +++++++++
>  board/freescale/ls1043ardb/cpld.c                  | 115 +++++++++++++
>  board/freescale/ls1043ardb/cpld.h                  |  43 +++++
>  board/freescale/ls1043ardb/ddr.c                   | 191 +++++++++++++++++++++
>  board/freescale/ls1043ardb/ddr.h                   |  45 +++++
>  board/freescale/ls1043ardb/ls1043ardb.c            | 131 ++++++++++++++
>  configs/ls1043ardb_defconfig                       |   4 +
>  include/configs/ls1043a_common.h                   | 172 +++++++++++++++++++
>  include/configs/ls1043ardb.h                       | 191 +++++++++++++++++++++
>  15 files changed, 1106 insertions(+)

<snip>

> diff --git a/board/freescale/ls1043ardb/ddr.c b/board/freescale/ls1043ardb/ddr.c
> new file mode 100644
> index 0000000..b181579
> --- /dev/null
> +++ b/board/freescale/ls1043ardb/ddr.c
> @@ -0,0 +1,191 @@
> +/*
> + * Copyright 2015 Freescale Semiconductor, Inc.
> + *
> + * SPDX-License-Identifier:	GPL-2.0+
> + */
> +
> +#include <common.h>
> +#include <fsl_ddr_sdram.h>
> +#include <fsl_ddr_dimm_params.h>
> +#include "ddr.h"
> +#ifdef CONFIG_FSL_DEEP_SLEEP
> +#include <fsl_sleep.h>
> +#endif
> +
> +DECLARE_GLOBAL_DATA_PTR;
> +
> +void fsl_ddr_board_options(memctl_options_t *popts,
> +			   dimm_params_t *pdimm,
> +			   unsigned int ctrl_num)
> +{
> +	const struct board_specific_parameters *pbsp, *pbsp_highest = NULL;
> +	ulong ddr_freq;
> +
> +	if (ctrl_num > 1) {
> +		printf("Not supported controller number %d\n", ctrl_num);
> +		return;
> +	}
> +	if (!pdimm->n_ranks)
> +		return;
> +
> +	pbsp = udimms[0];
> +
> +	/* Get clk_adjust, wrlvl_start, wrlvl_ctl, according to the board ddr
> +	 * freqency and n_banks specified in board_specific_parameters table.
> +	 */
> +	ddr_freq = get_ddr_freq(0) / 1000000;
> +	while (pbsp->datarate_mhz_high) {
> +		if (pbsp->n_ranks == pdimm->n_ranks) {
> +			if (ddr_freq <= pbsp->datarate_mhz_high) {
> +				popts->clk_adjust = pbsp->clk_adjust;
> +				popts->wrlvl_start = pbsp->wrlvl_start;
> +				popts->wrlvl_ctl_2 = pbsp->wrlvl_ctl_2;
> +				popts->wrlvl_ctl_3 = pbsp->wrlvl_ctl_3;
> +				popts->cpo_override = pbsp->cpo_override;
> +				popts->write_data_delay =
> +					pbsp->write_data_delay;
> +				goto found;
> +			}
> +			pbsp_highest = pbsp;
> +		}
> +		pbsp++;
> +	}
> +
> +	if (pbsp_highest) {
> +		printf("Error: board specific timing not found for %lu MT/s\n",
> +		       ddr_freq);
> +		printf("Trying to use the highest speed (%u) parameters\n",
> +		       pbsp_highest->datarate_mhz_high);
> +		popts->clk_adjust = pbsp_highest->clk_adjust;
> +		popts->wrlvl_start = pbsp_highest->wrlvl_start;
> +		popts->wrlvl_ctl_2 = pbsp->wrlvl_ctl_2;
> +		popts->wrlvl_ctl_3 = pbsp->wrlvl_ctl_3;
> +	} else {
> +		panic("DIMM is not supported by this board");
> +	}
> +found:
> +	debug("Found timing match: n_ranks %d, data rate %d, rank_gb %d\n",
> +	      pbsp->n_ranks, pbsp->datarate_mhz_high, pbsp->rank_gb);
> +
> +	/* force DDR bus width to 32 bits */
> +	popts->data_bus_width = 1;
> +	popts->otf_burst_chop_en = 0;
> +	popts->burst_length = DDR_BL8;
> +
> +	/*
> +	 * Factors to consider for half-strength driver enable:
> +	 *	- number of DIMMs installed
> +	 */
> +	popts->half_strength_driver_enable = 1;
> +	/*
> +	 * Write leveling override
> +	 */
> +	popts->wrlvl_override = 1;
> +	popts->wrlvl_sample = 0xf;
> +
> +	/*
> +	 * Rtt and Rtt_WR override
> +	 */
> +	popts->rtt_override = 0;
> +
> +	/* Enable ZQ calibration */
> +	popts->zq_en = 1;
> +
> +	popts->ddr_cdr1 = DDR_CDR1_DHC_EN | DDR_CDR1_ODT(DDR_CDR_ODT_80ohm);
> +	popts->ddr_cdr2 = DDR_CDR2_ODT(DDR_CDR_ODT_80ohm) |
> +			  DDR_CDR2_VREF_OVRD(70);	/* Vref = 70% */
> +}
> +
> +/* DDR model number: MT40A512M8HX-093E */
> +#ifdef CONFIG_SYS_DDR_RAW_TIMING
> +dimm_params_t ddr_raw_timing = {
> +	.n_ranks = 1,
> +	.rank_density = 2147483648u,
> +	.capacity = 2147483648u,
> +	.primary_sdram_width = 32,
> +	.ec_sdram_width = 0,
> +	.registered_dimm = 0,
> +	.mirrored_dimm = 0,
> +	.n_row_addr = 15,
> +	.n_col_addr = 10,
> +	.bank_addr_bits = 0,
> +	.bank_group_bits = 2,
> +	.edc_config = 0,
> +	.burst_lengths_bitmask = 0x0c,
> +
> +	.tckmin_x_ps = 938,
> +	.tckmax_ps = 1500,
> +	.caslat_x = 0x000DFA00,
> +	.taa_ps = 13500,
> +	.trcd_ps = 13500,
> +	.trp_ps = 13500,
> +	.tras_ps = 33000,
> +	.trc_ps = 46500,
> +	.trfc1_ps = 260000,
> +	.trfc2_ps = 160000,
> +	.trfc4_ps = 110000,
> +	.tfaw_ps = 21000,
> +	.trrds_ps = 3700,
> +	.trrdl_ps = 5300,
> +	.tccdl_ps = 5355,
> +	.refresh_rate_ps = 7800000,
> +	.dq_mapping[0] = 0x0,
> +	.dq_mapping[1] = 0x0,
> +	.dq_mapping[2] = 0x0,
> +	.dq_mapping[3] = 0x0,
> +	.dq_mapping[4] = 0x0,
> +	.dq_mapping[5] = 0x0,
> +	.dq_mapping[6] = 0x0,
> +	.dq_mapping[7] = 0x0,
> +	.dq_mapping[8] = 0x0,
> +	.dq_mapping[9] = 0x0,
> +	.dq_mapping[10] = 0x0,
> +	.dq_mapping[11] = 0x0,
> +	.dq_mapping[12] = 0x0,
> +	.dq_mapping[13] = 0x0,
> +	.dq_mapping[14] = 0x0,
> +	.dq_mapping[15] = 0x0,
> +	.dq_mapping[16] = 0x0,
> +	.dq_mapping[17] = 0x0,
> +	.dq_mapping_ors = 0,
> +};
> +
> +int fsl_ddr_get_dimm_params(dimm_params_t *pdimm,
> +			    unsigned int controller_number,
> +			    unsigned int dimm_number)
> +{
> +	static const char dimm_model[] = "Fixed DDR on board";
> +
> +	if (((controller_number == 0) && (dimm_number == 0)) ||
> +	    ((controller_number == 1) && (dimm_number == 0))) {
> +		memcpy(pdimm, &ddr_raw_timing, sizeof(dimm_params_t));
> +		memset(pdimm->mpart, 0, sizeof(pdimm->mpart));
> +		memcpy(pdimm->mpart, dimm_model, sizeof(dimm_model) - 1);
> +	}
> +
> +	return 0;
> +}
> +#endif
> +
> +phys_size_t initdram(int board_type)
> +{
> +	phys_size_t dram_size;
> +
> +#if defined(CONFIG_SPL_BUILD) || !defined(CONFIG_SPL)
> +	puts("Initializing DDR....\n");
> +	dram_size = fsl_ddr_sdram();
> +#else
> +	dram_size =  fsl_ddr_sdram_size();
> +#endif
> +#ifdef CONFIG_FSL_DEEP_SLEEP
> +	fsl_dp_ddr_restore();
> +#endif
> +
> +	return dram_size;
> +}
> +
> +void dram_init_banksize(void)
> +{
> +	gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
> +	gd->bd->bi_dram[0].size = gd->ram_size;
> +}

Mingkai,

There is an issue with this function. If you have large memory, you will have
more than one bank, won't you?

York

  reply	other threads:[~2015-11-06 20:11 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-10-26 11:47 [U-Boot] [Patch V8 00/17] add LS1043A platform support Gong Qianyu
2015-10-26 11:47 ` [U-Boot] [Patch V8 02/17] armv7/ls1021a: move ns_access to common file Gong Qianyu
2015-10-26 11:47 ` [U-Boot] [Patch V8 01/17] common/board_f.c: change the macro name and remove it for PPC platforms Gong Qianyu
2015-10-26 11:47 ` [U-Boot] [Patch V8 03/17] net/fm: Fix the endian issue to support both endianness platforms Gong Qianyu
2015-10-26 11:47 ` [U-Boot] [Patch V8 04/17] net/fm: Add support for 64-bit platforms Gong Qianyu
2015-10-26 11:47 ` [U-Boot] [Patch V8 05/17] net/fm: Make the return value logic consistent with convention Gong Qianyu
2015-10-26 11:47 ` [U-Boot] [Patch V8 06/17] net: fm: bug fix when CONFIG_PHYLIB not defined Gong Qianyu
2015-10-26 11:47 ` [U-Boot] [Patch V8 07/17] net: Move some header files to include/ Gong Qianyu
2015-10-26 11:47 ` [U-Boot] [Patch V8 08/17] net/fm: Add QSGMII PCS init Gong Qianyu
2015-10-26 11:47 ` [U-Boot] [Patch V8 09/17] net/fm: fix MDIO controller base on FMAN2 Gong Qianyu
2015-10-26 11:47 ` [U-Boot] [Patch V8 10/17] armv8/fsl_lsch3: Change arch to fsl-layerscape Gong Qianyu
2015-10-26 11:47 ` [U-Boot] [Patch V8 11/17] armv8/fsl_lsch2: Add fsl_lsch2 SoC Gong Qianyu
2015-10-26 11:47 ` [U-Boot] [Patch V8 12/17] armv8/ls1043ardb: Add LS1043ARDB board support Gong Qianyu
2015-11-06 20:11   ` York Sun [this message]
2015-11-09  2:17     ` Hu Vincent
2015-10-26 11:47 ` [U-Boot] [Patch V8 13/17] armv8/ls1043ardb: Add nand boot support Gong Qianyu
2015-10-26 11:47 ` [U-Boot] [Patch V8 14/17] armv8/ls1043a: Add Fman support Gong Qianyu
2015-10-26 11:47 ` [U-Boot] [Patch V8 15/17] armv8/ls1043ardb: esdhc: Add esdhc support for ls1043ardb Gong Qianyu
2015-10-26 11:47 ` [U-Boot] [Patch V8 16/17] armv8/ls1043ardb: Add sd boot support Gong Qianyu
2015-10-26 11:47 ` [U-Boot] [Patch V8 17/17] armv8/ls1043a: Enable secondary cores Gong Qianyu
2015-10-30 16:17 ` [U-Boot] [Patch V8 00/17] add LS1043A platform support York Sun

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=563D096C.5090203@freescale.com \
    --to=yorksun@freescale.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox