Chandan Nath | 98b036e | 2011-10-14 02:58:24 +0000 | [diff] [blame] | 1 | /* |
| 2 | * DDR Configuration for AM33xx devices. |
| 3 | * |
| 4 | * Copyright (C) 2011 Texas Instruments Incorporated - |
| 5 | http://www.ti.com/ |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or |
| 8 | * modify it under the terms of the GNU General Public License as |
| 9 | * published by the Free Software Foundation; either version 2 of |
| 10 | * the License, or (at your option) any later version. |
| 11 | * |
| 12 | * This program is distributed .as is. WITHOUT ANY WARRANTY of any |
| 13 | * kind, whether express or implied; without even the implied warranty |
| 14 | * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | * GNU General Public License for more details. |
| 16 | */ |
| 17 | |
| 18 | #include <asm/arch/cpu.h> |
| 19 | #include <asm/arch/ddr_defs.h> |
| 20 | #include <asm/io.h> |
Tom Rini | 0d65471 | 2012-05-29 09:02:15 -0700 | [diff] [blame] | 21 | #include <asm/emif.h> |
Chandan Nath | 98b036e | 2011-10-14 02:58:24 +0000 | [diff] [blame] | 22 | |
| 23 | /** |
| 24 | * Base address for EMIF instances |
| 25 | */ |
Tom Rini | 0d65471 | 2012-05-29 09:02:15 -0700 | [diff] [blame] | 26 | static struct emif_reg_struct *emif_reg = { |
| 27 | (struct emif_reg_struct *)EMIF4_0_CFG_BASE}; |
Chandan Nath | 98b036e | 2011-10-14 02:58:24 +0000 | [diff] [blame] | 28 | |
| 29 | /** |
| 30 | * Base address for DDR instance |
| 31 | */ |
| 32 | static struct ddr_regs *ddr_reg[2] = { |
| 33 | (struct ddr_regs *)DDR_PHY_BASE_ADDR, |
| 34 | (struct ddr_regs *)DDR_PHY_BASE_ADDR2}; |
| 35 | |
| 36 | /** |
| 37 | * Base address for ddr io control instances |
| 38 | */ |
| 39 | static struct ddr_cmdtctrl *ioctrl_reg = { |
| 40 | (struct ddr_cmdtctrl *)DDR_CONTROL_BASE_ADDR}; |
| 41 | |
| 42 | /** |
Chandan Nath | 98b036e | 2011-10-14 02:58:24 +0000 | [diff] [blame] | 43 | * Configure SDRAM |
| 44 | */ |
Tom Rini | b668ae4 | 2012-07-24 14:55:38 -0700 | [diff] [blame] | 45 | void config_sdram(const struct emif_regs *regs) |
Chandan Nath | 98b036e | 2011-10-14 02:58:24 +0000 | [diff] [blame] | 46 | { |
Tom Rini | b668ae4 | 2012-07-24 14:55:38 -0700 | [diff] [blame] | 47 | writel(regs->ref_ctrl, &emif_reg->emif_sdram_ref_ctrl); |
| 48 | writel(regs->ref_ctrl, &emif_reg->emif_sdram_ref_ctrl_shdw); |
Tom Rini | 323315a | 2012-07-30 14:49:50 -0700 | [diff] [blame] | 49 | if (regs->zq_config) |
| 50 | writel(regs->zq_config, &emif_reg->emif_zq_config); |
Tom Rini | b668ae4 | 2012-07-24 14:55:38 -0700 | [diff] [blame] | 51 | writel(regs->sdram_config, &emif_reg->emif_sdram_config); |
Chandan Nath | 98b036e | 2011-10-14 02:58:24 +0000 | [diff] [blame] | 52 | } |
| 53 | |
| 54 | /** |
| 55 | * Set SDRAM timings |
| 56 | */ |
Tom Rini | b668ae4 | 2012-07-24 14:55:38 -0700 | [diff] [blame] | 57 | void set_sdram_timings(const struct emif_regs *regs) |
Chandan Nath | 98b036e | 2011-10-14 02:58:24 +0000 | [diff] [blame] | 58 | { |
Tom Rini | b668ae4 | 2012-07-24 14:55:38 -0700 | [diff] [blame] | 59 | writel(regs->sdram_tim1, &emif_reg->emif_sdram_tim_1); |
| 60 | writel(regs->sdram_tim1, &emif_reg->emif_sdram_tim_1_shdw); |
| 61 | writel(regs->sdram_tim2, &emif_reg->emif_sdram_tim_2); |
| 62 | writel(regs->sdram_tim2, &emif_reg->emif_sdram_tim_2_shdw); |
| 63 | writel(regs->sdram_tim3, &emif_reg->emif_sdram_tim_3); |
| 64 | writel(regs->sdram_tim3, &emif_reg->emif_sdram_tim_3_shdw); |
Chandan Nath | 98b036e | 2011-10-14 02:58:24 +0000 | [diff] [blame] | 65 | } |
| 66 | |
| 67 | /** |
| 68 | * Configure DDR PHY |
| 69 | */ |
Tom Rini | b668ae4 | 2012-07-24 14:55:38 -0700 | [diff] [blame] | 70 | void config_ddr_phy(const struct emif_regs *regs) |
Chandan Nath | 98b036e | 2011-10-14 02:58:24 +0000 | [diff] [blame] | 71 | { |
Tom Rini | b668ae4 | 2012-07-24 14:55:38 -0700 | [diff] [blame] | 72 | writel(regs->emif_ddr_phy_ctlr_1, &emif_reg->emif_ddr_phy_ctrl_1); |
| 73 | writel(regs->emif_ddr_phy_ctlr_1, &emif_reg->emif_ddr_phy_ctrl_1_shdw); |
Chandan Nath | 98b036e | 2011-10-14 02:58:24 +0000 | [diff] [blame] | 74 | } |
| 75 | |
| 76 | /** |
| 77 | * Configure DDR CMD control registers |
| 78 | */ |
Tom Rini | 6f868cf | 2012-07-24 14:54:41 -0700 | [diff] [blame] | 79 | void config_cmd_ctrl(const struct cmd_control *cmd) |
Chandan Nath | 98b036e | 2011-10-14 02:58:24 +0000 | [diff] [blame] | 80 | { |
| 81 | writel(cmd->cmd0csratio, &ddr_reg[0]->cm0csratio); |
Chandan Nath | 98b036e | 2011-10-14 02:58:24 +0000 | [diff] [blame] | 82 | writel(cmd->cmd0dldiff, &ddr_reg[0]->cm0dldiff); |
| 83 | writel(cmd->cmd0iclkout, &ddr_reg[0]->cm0iclkout); |
| 84 | |
| 85 | writel(cmd->cmd1csratio, &ddr_reg[0]->cm1csratio); |
Chandan Nath | 98b036e | 2011-10-14 02:58:24 +0000 | [diff] [blame] | 86 | writel(cmd->cmd1dldiff, &ddr_reg[0]->cm1dldiff); |
| 87 | writel(cmd->cmd1iclkout, &ddr_reg[0]->cm1iclkout); |
| 88 | |
| 89 | writel(cmd->cmd2csratio, &ddr_reg[0]->cm2csratio); |
Chandan Nath | 98b036e | 2011-10-14 02:58:24 +0000 | [diff] [blame] | 90 | writel(cmd->cmd2dldiff, &ddr_reg[0]->cm2dldiff); |
| 91 | writel(cmd->cmd2iclkout, &ddr_reg[0]->cm2iclkout); |
Chandan Nath | 98b036e | 2011-10-14 02:58:24 +0000 | [diff] [blame] | 92 | } |
| 93 | |
| 94 | /** |
| 95 | * Configure DDR DATA registers |
| 96 | */ |
Tom Rini | 6f868cf | 2012-07-24 14:54:41 -0700 | [diff] [blame] | 97 | void config_ddr_data(int macrono, const struct ddr_data *data) |
Chandan Nath | 98b036e | 2011-10-14 02:58:24 +0000 | [diff] [blame] | 98 | { |
| 99 | writel(data->datardsratio0, &ddr_reg[macrono]->dt0rdsratio0); |
Chandan Nath | 98b036e | 2011-10-14 02:58:24 +0000 | [diff] [blame] | 100 | writel(data->datawdsratio0, &ddr_reg[macrono]->dt0wdsratio0); |
Chandan Nath | 98b036e | 2011-10-14 02:58:24 +0000 | [diff] [blame] | 101 | writel(data->datawiratio0, &ddr_reg[macrono]->dt0wiratio0); |
Chandan Nath | 98b036e | 2011-10-14 02:58:24 +0000 | [diff] [blame] | 102 | writel(data->datagiratio0, &ddr_reg[macrono]->dt0giratio0); |
Chandan Nath | 98b036e | 2011-10-14 02:58:24 +0000 | [diff] [blame] | 103 | writel(data->datafwsratio0, &ddr_reg[macrono]->dt0fwsratio0); |
Chandan Nath | 98b036e | 2011-10-14 02:58:24 +0000 | [diff] [blame] | 104 | writel(data->datawrsratio0, &ddr_reg[macrono]->dt0wrsratio0); |
Tom Rini | 3e44458 | 2012-07-30 11:49:47 -0700 | [diff] [blame] | 105 | writel(data->datauserank0delay, &ddr_reg[macrono]->dt0rdelays0); |
Chandan Nath | 98b036e | 2011-10-14 02:58:24 +0000 | [diff] [blame] | 106 | writel(data->datadldiff0, &ddr_reg[macrono]->dt0dldiff0); |
Chandan Nath | 98b036e | 2011-10-14 02:58:24 +0000 | [diff] [blame] | 107 | } |
| 108 | |
Tom Rini | b239b3b | 2012-07-24 16:31:26 -0700 | [diff] [blame] | 109 | void config_io_ctrl(unsigned long val) |
Chandan Nath | 98b036e | 2011-10-14 02:58:24 +0000 | [diff] [blame] | 110 | { |
Tom Rini | b239b3b | 2012-07-24 16:31:26 -0700 | [diff] [blame] | 111 | writel(val, &ioctrl_reg->cm0ioctl); |
| 112 | writel(val, &ioctrl_reg->cm1ioctl); |
| 113 | writel(val, &ioctrl_reg->cm2ioctl); |
| 114 | writel(val, &ioctrl_reg->dt0ioctl); |
| 115 | writel(val, &ioctrl_reg->dt1ioctl); |
Chandan Nath | 98b036e | 2011-10-14 02:58:24 +0000 | [diff] [blame] | 116 | } |