Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 1 | /* |
York Sun | 34e026f | 2014-03-27 17:54:47 -0700 | [diff] [blame] | 2 | * Copyright 2008-2014 Freescale Semiconductor, Inc. |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 3 | * |
| 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 Sun | 34e026f | 2014-03-27 17:54:47 -0700 | [diff] [blame] | 12 | #include <fsl_ddrc_version.h> |
York Sun | 5614e71 | 2013-09-30 09:22:09 -0700 | [diff] [blame] | 13 | #include <fsl_ddr_sdram.h> |
| 14 | #include <fsl_ddr_dimm_params.h> |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 15 | |
York Sun | 5614e71 | 2013-09-30 09:22:09 -0700 | [diff] [blame] | 16 | #include <common_timing_params.h> |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 17 | |
York Sun | 4e5b1bd | 2014-02-10 13:59:42 -0800 | [diff] [blame] | 18 | #ifdef CONFIG_SYS_FSL_DDR_LE |
| 19 | #define ddr_in32(a) in_le32(a) |
| 20 | #define ddr_out32(a, v) out_le32(a, v) |
| 21 | #else |
| 22 | #define ddr_in32(a) in_be32(a) |
| 23 | #define ddr_out32(a, v) out_be32(a, v) |
| 24 | #endif |
| 25 | |
York Sun | 34e026f | 2014-03-27 17:54:47 -0700 | [diff] [blame] | 26 | #define _DDR_ADDR CONFIG_SYS_FSL_DDR_ADDR |
| 27 | |
| 28 | u32 fsl_ddr_get_version(void); |
| 29 | |
York Sun | 1b3e3c4 | 2011-06-07 09:42:16 +0800 | [diff] [blame] | 30 | #if defined(CONFIG_DDR_SPD) || defined(CONFIG_SPD_EEPROM) |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 31 | /* |
| 32 | * Bind the main DDR setup driver's generic names |
| 33 | * to this specific DDR technology. |
| 34 | */ |
| 35 | static __inline__ int |
| 36 | compute_dimm_parameters(const generic_spd_eeprom_t *spd, |
| 37 | dimm_params_t *pdimm, |
| 38 | unsigned int dimm_number) |
| 39 | { |
| 40 | return ddr_compute_dimm_parameters(spd, pdimm, dimm_number); |
| 41 | } |
York Sun | 1b3e3c4 | 2011-06-07 09:42:16 +0800 | [diff] [blame] | 42 | #endif |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 43 | |
| 44 | /* |
| 45 | * Data Structures |
| 46 | * |
| 47 | * All data structures have to be on the stack |
| 48 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 49 | #define CONFIG_SYS_NUM_DDR_CTLRS CONFIG_NUM_DDR_CONTROLLERS |
| 50 | #define CONFIG_SYS_DIMM_SLOTS_PER_CTLR CONFIG_DIMM_SLOTS_PER_CTLR |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 51 | |
| 52 | typedef struct { |
| 53 | generic_spd_eeprom_t |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 54 | spd_installed_dimms[CONFIG_SYS_NUM_DDR_CTLRS][CONFIG_SYS_DIMM_SLOTS_PER_CTLR]; |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 55 | struct dimm_params_s |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 56 | dimm_params[CONFIG_SYS_NUM_DDR_CTLRS][CONFIG_SYS_DIMM_SLOTS_PER_CTLR]; |
| 57 | memctl_options_t memctl_opts[CONFIG_SYS_NUM_DDR_CTLRS]; |
| 58 | common_timing_params_t common_timing_params[CONFIG_SYS_NUM_DDR_CTLRS]; |
| 59 | fsl_ddr_cfg_regs_t fsl_ddr_config_reg[CONFIG_SYS_NUM_DDR_CTLRS]; |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 60 | } fsl_ddr_info_t; |
| 61 | |
| 62 | /* Compute steps */ |
| 63 | #define STEP_GET_SPD (1 << 0) |
| 64 | #define STEP_COMPUTE_DIMM_PARMS (1 << 1) |
| 65 | #define STEP_COMPUTE_COMMON_PARMS (1 << 2) |
| 66 | #define STEP_GATHER_OPTS (1 << 3) |
| 67 | #define STEP_ASSIGN_ADDRESSES (1 << 4) |
| 68 | #define STEP_COMPUTE_REGS (1 << 5) |
| 69 | #define STEP_PROGRAM_REGS (1 << 6) |
| 70 | #define STEP_ALL 0xFFF |
| 71 | |
York Sun | 6f5e1dc | 2011-09-16 13:21:35 -0700 | [diff] [blame] | 72 | unsigned long long |
Haiying Wang | fc0c2b6 | 2010-12-01 10:35:31 -0500 | [diff] [blame] | 73 | fsl_ddr_compute(fsl_ddr_info_t *pinfo, unsigned int start_step, |
| 74 | unsigned int size_only); |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 75 | |
York Sun | 6f5e1dc | 2011-09-16 13:21:35 -0700 | [diff] [blame] | 76 | const char *step_to_string(unsigned int step); |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 77 | |
York Sun | 6f5e1dc | 2011-09-16 13:21:35 -0700 | [diff] [blame] | 78 | unsigned int compute_fsl_memctl_config_regs(const memctl_options_t *popts, |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 79 | fsl_ddr_cfg_regs_t *ddr, |
| 80 | const common_timing_params_t *common_dimm, |
| 81 | const dimm_params_t *dimm_parameters, |
Haiying Wang | fc0c2b6 | 2010-12-01 10:35:31 -0500 | [diff] [blame] | 82 | unsigned int dbw_capacity_adjust, |
| 83 | unsigned int size_only); |
York Sun | 6f5e1dc | 2011-09-16 13:21:35 -0700 | [diff] [blame] | 84 | unsigned int compute_lowest_common_dimm_parameters( |
| 85 | const dimm_params_t *dimm_params, |
| 86 | common_timing_params_t *outpdimm, |
| 87 | unsigned int number_of_dimms); |
Priyanka Jain | 0dd38a3 | 2013-09-25 10:41:19 +0530 | [diff] [blame] | 88 | unsigned int populate_memctl_options(int all_dimms_registered, |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 89 | memctl_options_t *popts, |
Haiying Wang | dfb4910 | 2008-10-03 12:36:55 -0400 | [diff] [blame] | 90 | dimm_params_t *pdimm, |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 91 | unsigned int ctrl_num); |
York Sun | 6f5e1dc | 2011-09-16 13:21:35 -0700 | [diff] [blame] | 92 | void check_interleaving_options(fsl_ddr_info_t *pinfo); |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 93 | |
York Sun | 6f5e1dc | 2011-09-16 13:21:35 -0700 | [diff] [blame] | 94 | unsigned int mclk_to_picos(unsigned int mclk); |
| 95 | unsigned int get_memory_clk_period_ps(void); |
| 96 | unsigned int picos_to_mclk(unsigned int picos); |
| 97 | void fsl_ddr_set_lawbar( |
| 98 | const common_timing_params_t *memctl_common_params, |
| 99 | unsigned int memctl_interleaved, |
| 100 | unsigned int ctrl_num); |
| 101 | |
James Yang | e8ba6c5 | 2013-01-07 14:01:03 +0000 | [diff] [blame] | 102 | int fsl_ddr_interactive_env_var_exists(void); |
| 103 | unsigned long long fsl_ddr_interactive(fsl_ddr_info_t *pinfo, int var_is_set); |
York Sun | 6f5e1dc | 2011-09-16 13:21:35 -0700 | [diff] [blame] | 104 | void fsl_ddr_get_spd(generic_spd_eeprom_t *ctrl_dimms_spd, |
| 105 | unsigned int ctrl_num); |
| 106 | |
| 107 | int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); |
| 108 | unsigned int check_fsl_memctl_config_regs(const fsl_ddr_cfg_regs_t *ddr); |
York Sun | 4e5b1bd | 2014-02-10 13:59:42 -0800 | [diff] [blame] | 109 | void board_add_ram_info(int use_default); |
York Sun | 6f5e1dc | 2011-09-16 13:21:35 -0700 | [diff] [blame] | 110 | |
| 111 | /* processor specific function */ |
| 112 | void fsl_ddr_set_memctl_regs(const fsl_ddr_cfg_regs_t *regs, |
York Sun | c63e137 | 2013-06-25 11:37:48 -0700 | [diff] [blame] | 113 | unsigned int ctrl_num, int step); |
York Sun | 1b3e3c4 | 2011-06-07 09:42:16 +0800 | [diff] [blame] | 114 | |
| 115 | /* board specific function */ |
| 116 | int fsl_ddr_get_dimm_params(dimm_params_t *pdimm, |
| 117 | unsigned int controller_number, |
| 118 | unsigned int dimm_number); |
Kumar Gala | 58e5e9a | 2008-08-26 15:01:29 -0500 | [diff] [blame] | 119 | #endif |