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