blob: f59aa33b227085d72cd448383009a9fab6996f95 [file] [log] [blame]
Kumar Gala124b0822008-08-26 15:01:29 -05001/*
Haiying Wang80ad4012010-12-01 10:35:31 -05002 * Copyright 2008-2011 Freescale Semiconductor, Inc.
Kumar Gala124b0822008-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
12#include <asm/fsl_ddr_sdram.h>
Haiying Wangfa440362008-10-03 12:36:55 -040013#include <asm/fsl_ddr_dimm_params.h>
Kumar Gala124b0822008-08-26 15:01:29 -050014
Kumar Gala124b0822008-08-26 15:01:29 -050015#include "common_timing_params.h"
16
York Sune73cc042011-06-07 09:42:16 +080017#if defined(CONFIG_DDR_SPD) || defined(CONFIG_SPD_EEPROM)
Kumar Gala124b0822008-08-26 15:01:29 -050018/*
19 * Bind the main DDR setup driver's generic names
20 * to this specific DDR technology.
21 */
22static __inline__ int
23compute_dimm_parameters(const generic_spd_eeprom_t *spd,
24 dimm_params_t *pdimm,
25 unsigned int dimm_number)
26{
27 return ddr_compute_dimm_parameters(spd, pdimm, dimm_number);
28}
York Sune73cc042011-06-07 09:42:16 +080029#endif
Kumar Gala124b0822008-08-26 15:01:29 -050030
31/*
32 * Data Structures
33 *
34 * All data structures have to be on the stack
35 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020036#define CONFIG_SYS_NUM_DDR_CTLRS CONFIG_NUM_DDR_CONTROLLERS
37#define CONFIG_SYS_DIMM_SLOTS_PER_CTLR CONFIG_DIMM_SLOTS_PER_CTLR
Kumar Gala124b0822008-08-26 15:01:29 -050038
39typedef struct {
40 generic_spd_eeprom_t
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020041 spd_installed_dimms[CONFIG_SYS_NUM_DDR_CTLRS][CONFIG_SYS_DIMM_SLOTS_PER_CTLR];
Kumar Gala124b0822008-08-26 15:01:29 -050042 struct dimm_params_s
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020043 dimm_params[CONFIG_SYS_NUM_DDR_CTLRS][CONFIG_SYS_DIMM_SLOTS_PER_CTLR];
44 memctl_options_t memctl_opts[CONFIG_SYS_NUM_DDR_CTLRS];
45 common_timing_params_t common_timing_params[CONFIG_SYS_NUM_DDR_CTLRS];
46 fsl_ddr_cfg_regs_t fsl_ddr_config_reg[CONFIG_SYS_NUM_DDR_CTLRS];
Kumar Gala124b0822008-08-26 15:01:29 -050047} fsl_ddr_info_t;
48
49/* Compute steps */
50#define STEP_GET_SPD (1 << 0)
51#define STEP_COMPUTE_DIMM_PARMS (1 << 1)
52#define STEP_COMPUTE_COMMON_PARMS (1 << 2)
53#define STEP_GATHER_OPTS (1 << 3)
54#define STEP_ASSIGN_ADDRESSES (1 << 4)
55#define STEP_COMPUTE_REGS (1 << 5)
56#define STEP_PROGRAM_REGS (1 << 6)
57#define STEP_ALL 0xFFF
58
Kumar Gala68ef4bd2009-06-11 23:42:35 -050059extern unsigned long long
Haiying Wang80ad4012010-12-01 10:35:31 -050060fsl_ddr_compute(fsl_ddr_info_t *pinfo, unsigned int start_step,
61 unsigned int size_only);
Kumar Gala124b0822008-08-26 15:01:29 -050062
63extern const char * step_to_string(unsigned int step);
64
65extern unsigned int
66compute_fsl_memctl_config_regs(const memctl_options_t *popts,
67 fsl_ddr_cfg_regs_t *ddr,
68 const common_timing_params_t *common_dimm,
69 const dimm_params_t *dimm_parameters,
Haiying Wang80ad4012010-12-01 10:35:31 -050070 unsigned int dbw_capacity_adjust,
71 unsigned int size_only);
Kumar Gala124b0822008-08-26 15:01:29 -050072extern unsigned int
73compute_lowest_common_dimm_parameters(const dimm_params_t *dimm_params,
74 common_timing_params_t *outpdimm,
75 unsigned int number_of_dimms);
76extern unsigned int populate_memctl_options(int all_DIMMs_registered,
77 memctl_options_t *popts,
Haiying Wangfa440362008-10-03 12:36:55 -040078 dimm_params_t *pdimm,
Kumar Gala124b0822008-08-26 15:01:29 -050079 unsigned int ctrl_num);
york93799ca2010-07-02 22:25:52 +000080extern void check_interleaving_options(fsl_ddr_info_t *pinfo);
Kumar Gala124b0822008-08-26 15:01:29 -050081
82extern unsigned int mclk_to_picos(unsigned int mclk);
83extern unsigned int get_memory_clk_period_ps(void);
84extern unsigned int picos_to_mclk(unsigned int picos);
York Sune73cc042011-06-07 09:42:16 +080085
86/* board specific function */
87int fsl_ddr_get_dimm_params(dimm_params_t *pdimm,
88 unsigned int controller_number,
89 unsigned int dimm_number);
Kumar Gala124b0822008-08-26 15:01:29 -050090#endif