blob: 72c0b2e94edc7011280481ea44ac4929bdec4387 [file] [log] [blame]
Kumar Gala58e5e9a2008-08-26 15:01:29 -05001/*
Haiying Wangfc0c2b62010-12-01 10:35:31 -05002 * Copyright 2008-2011 Freescale Semiconductor, Inc.
Kumar Gala58e5e9a2008-08-26 15:01:29 -05003 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * Version 2 as published by the Free Software Foundation.
7 */
8
9#ifndef FSL_DDR_MAIN_H
10#define FSL_DDR_MAIN_H
11
York Sun5614e712013-09-30 09:22:09 -070012#include <fsl_ddr_sdram.h>
13#include <fsl_ddr_dimm_params.h>
Kumar Gala58e5e9a2008-08-26 15:01:29 -050014
York Sun5614e712013-09-30 09:22:09 -070015#include <common_timing_params.h>
Kumar Gala58e5e9a2008-08-26 15:01:29 -050016
York Sun4e5b1bd2014-02-10 13:59:42 -080017#ifdef CONFIG_SYS_FSL_DDR_LE
18#define ddr_in32(a) in_le32(a)
19#define ddr_out32(a, v) out_le32(a, v)
20#else
21#define ddr_in32(a) in_be32(a)
22#define ddr_out32(a, v) out_be32(a, v)
23#endif
24
York Sun1b3e3c42011-06-07 09:42:16 +080025#if defined(CONFIG_DDR_SPD) || defined(CONFIG_SPD_EEPROM)
Kumar Gala58e5e9a2008-08-26 15:01:29 -050026/*
27 * Bind the main DDR setup driver's generic names
28 * to this specific DDR technology.
29 */
30static __inline__ int
31compute_dimm_parameters(const generic_spd_eeprom_t *spd,
32 dimm_params_t *pdimm,
33 unsigned int dimm_number)
34{
35 return ddr_compute_dimm_parameters(spd, pdimm, dimm_number);
36}
York Sun1b3e3c42011-06-07 09:42:16 +080037#endif
Kumar Gala58e5e9a2008-08-26 15:01:29 -050038
39/*
40 * Data Structures
41 *
42 * All data structures have to be on the stack
43 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020044#define CONFIG_SYS_NUM_DDR_CTLRS CONFIG_NUM_DDR_CONTROLLERS
45#define CONFIG_SYS_DIMM_SLOTS_PER_CTLR CONFIG_DIMM_SLOTS_PER_CTLR
Kumar Gala58e5e9a2008-08-26 15:01:29 -050046
47typedef struct {
48 generic_spd_eeprom_t
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020049 spd_installed_dimms[CONFIG_SYS_NUM_DDR_CTLRS][CONFIG_SYS_DIMM_SLOTS_PER_CTLR];
Kumar Gala58e5e9a2008-08-26 15:01:29 -050050 struct dimm_params_s
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020051 dimm_params[CONFIG_SYS_NUM_DDR_CTLRS][CONFIG_SYS_DIMM_SLOTS_PER_CTLR];
52 memctl_options_t memctl_opts[CONFIG_SYS_NUM_DDR_CTLRS];
53 common_timing_params_t common_timing_params[CONFIG_SYS_NUM_DDR_CTLRS];
54 fsl_ddr_cfg_regs_t fsl_ddr_config_reg[CONFIG_SYS_NUM_DDR_CTLRS];
Kumar Gala58e5e9a2008-08-26 15:01:29 -050055} fsl_ddr_info_t;
56
57/* Compute steps */
58#define STEP_GET_SPD (1 << 0)
59#define STEP_COMPUTE_DIMM_PARMS (1 << 1)
60#define STEP_COMPUTE_COMMON_PARMS (1 << 2)
61#define STEP_GATHER_OPTS (1 << 3)
62#define STEP_ASSIGN_ADDRESSES (1 << 4)
63#define STEP_COMPUTE_REGS (1 << 5)
64#define STEP_PROGRAM_REGS (1 << 6)
65#define STEP_ALL 0xFFF
66
York Sun6f5e1dc2011-09-16 13:21:35 -070067unsigned long long
Haiying Wangfc0c2b62010-12-01 10:35:31 -050068fsl_ddr_compute(fsl_ddr_info_t *pinfo, unsigned int start_step,
69 unsigned int size_only);
Kumar Gala58e5e9a2008-08-26 15:01:29 -050070
York Sun6f5e1dc2011-09-16 13:21:35 -070071const char *step_to_string(unsigned int step);
Kumar Gala58e5e9a2008-08-26 15:01:29 -050072
York Sun6f5e1dc2011-09-16 13:21:35 -070073unsigned int compute_fsl_memctl_config_regs(const memctl_options_t *popts,
Kumar Gala58e5e9a2008-08-26 15:01:29 -050074 fsl_ddr_cfg_regs_t *ddr,
75 const common_timing_params_t *common_dimm,
76 const dimm_params_t *dimm_parameters,
Haiying Wangfc0c2b62010-12-01 10:35:31 -050077 unsigned int dbw_capacity_adjust,
78 unsigned int size_only);
York Sun6f5e1dc2011-09-16 13:21:35 -070079unsigned int compute_lowest_common_dimm_parameters(
80 const dimm_params_t *dimm_params,
81 common_timing_params_t *outpdimm,
82 unsigned int number_of_dimms);
Priyanka Jain0dd38a32013-09-25 10:41:19 +053083unsigned int populate_memctl_options(int all_dimms_registered,
Kumar Gala58e5e9a2008-08-26 15:01:29 -050084 memctl_options_t *popts,
Haiying Wangdfb49102008-10-03 12:36:55 -040085 dimm_params_t *pdimm,
Kumar Gala58e5e9a2008-08-26 15:01:29 -050086 unsigned int ctrl_num);
York Sun6f5e1dc2011-09-16 13:21:35 -070087void check_interleaving_options(fsl_ddr_info_t *pinfo);
Kumar Gala58e5e9a2008-08-26 15:01:29 -050088
York Sun6f5e1dc2011-09-16 13:21:35 -070089unsigned int mclk_to_picos(unsigned int mclk);
90unsigned int get_memory_clk_period_ps(void);
91unsigned int picos_to_mclk(unsigned int picos);
92void fsl_ddr_set_lawbar(
93 const common_timing_params_t *memctl_common_params,
94 unsigned int memctl_interleaved,
95 unsigned int ctrl_num);
96
James Yange8ba6c52013-01-07 14:01:03 +000097int fsl_ddr_interactive_env_var_exists(void);
98unsigned long long fsl_ddr_interactive(fsl_ddr_info_t *pinfo, int var_is_set);
York Sun6f5e1dc2011-09-16 13:21:35 -070099void fsl_ddr_get_spd(generic_spd_eeprom_t *ctrl_dimms_spd,
100 unsigned int ctrl_num);
101
102int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
103unsigned int check_fsl_memctl_config_regs(const fsl_ddr_cfg_regs_t *ddr);
York Sun4e5b1bd2014-02-10 13:59:42 -0800104void board_add_ram_info(int use_default);
York Sun6f5e1dc2011-09-16 13:21:35 -0700105
106/* processor specific function */
107void fsl_ddr_set_memctl_regs(const fsl_ddr_cfg_regs_t *regs,
York Sunc63e1372013-06-25 11:37:48 -0700108 unsigned int ctrl_num, int step);
York Sun1b3e3c42011-06-07 09:42:16 +0800109
110/* board specific function */
111int fsl_ddr_get_dimm_params(dimm_params_t *pdimm,
112 unsigned int controller_number,
113 unsigned int dimm_number);
Kumar Gala58e5e9a2008-08-26 15:01:29 -0500114#endif