blob: 4c65f5628b39a99b24fb2ca4fcc1d8cb1eb0bed5 [file] [log] [blame]
Paul Walmsleyf2ab9972009-01-28 12:27:37 -07001/*
2 * SMS/SDRC (SDRAM controller) common code for OMAP2/3
3 *
4 * Copyright (C) 2005, 2008 Texas Instruments Inc.
5 * Copyright (C) 2005, 2008 Nokia Corporation
6 *
7 * Tony Lindgren <tony@atomide.com>
8 * Paul Walmsley
9 * Richard Woodruff <r-woodruff2@ti.com>
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
14 */
Paul Walmsley87246b72009-01-28 12:27:39 -070015#undef DEBUG
Paul Walmsleyf2ab9972009-01-28 12:27:37 -070016
17#include <linux/module.h>
18#include <linux/kernel.h>
19#include <linux/device.h>
20#include <linux/list.h>
21#include <linux/errno.h>
22#include <linux/delay.h>
23#include <linux/clk.h>
24#include <linux/io.h>
25
Tony Lindgrence491cf2009-10-20 09:40:47 -070026#include <plat/common.h>
27#include <plat/clock.h>
28#include <plat/sram.h>
Paul Walmsleyf2ab9972009-01-28 12:27:37 -070029
30#include "prm.h"
31
Tony Lindgrence491cf2009-10-20 09:40:47 -070032#include <plat/sdrc.h>
Paul Walmsleyf2ab9972009-01-28 12:27:37 -070033#include "sdrc.h"
34
Jean Pihet58cda882009-07-24 19:43:25 -060035static struct omap_sdrc_params *sdrc_init_params_cs0, *sdrc_init_params_cs1;
Paul Walmsley87246b72009-01-28 12:27:39 -070036
Paul Walmsleyf2ab9972009-01-28 12:27:37 -070037void __iomem *omap2_sdrc_base;
38void __iomem *omap2_sms_base;
39
Kalle Jokiniemi8a917d22009-05-13 13:32:11 +030040struct omap2_sms_regs {
41 u32 sms_sysconfig;
42};
43
44static struct omap2_sms_regs sms_context;
45
Paul Walmsley98cfe5a2009-05-12 17:27:09 -060046/* SDRC_POWER register bits */
47#define SDRC_POWER_EXTCLKDIS_SHIFT 3
48#define SDRC_POWER_PWDENA_SHIFT 2
49#define SDRC_POWER_PAGEPOLICY_SHIFT 0
Paul Walmsley87246b72009-01-28 12:27:39 -070050
51/**
Kalle Jokiniemi8a917d22009-05-13 13:32:11 +030052 * omap2_sms_save_context - Save SMS registers
53 *
54 * Save SMS registers that need to be restored after off mode.
55 */
56void omap2_sms_save_context(void)
57{
58 sms_context.sms_sysconfig = sms_read_reg(SMS_SYSCONFIG);
59}
60
61/**
62 * omap2_sms_restore_context - Restore SMS registers
63 *
64 * Restore SMS registers that need to be Restored after off mode.
65 */
66void omap2_sms_restore_context(void)
67{
68 sms_write_reg(sms_context.sms_sysconfig, SMS_SYSCONFIG);
69}
70
71/**
Paul Walmsley87246b72009-01-28 12:27:39 -070072 * omap2_sdrc_get_params - return SDRC register values for a given clock rate
73 * @r: SDRC clock rate (in Hz)
Jean Pihet58cda882009-07-24 19:43:25 -060074 * @sdrc_cs0: chip select 0 ram timings **
75 * @sdrc_cs1: chip select 1 ram timings **
Paul Walmsley87246b72009-01-28 12:27:39 -070076 *
77 * Return pre-calculated values for the SDRC_ACTIM_CTRLA,
Jean Pihet58cda882009-07-24 19:43:25 -060078 * SDRC_ACTIM_CTRLB, SDRC_RFR_CTRL and SDRC_MR registers in sdrc_cs[01]
79 * structs,for a given SDRC clock rate 'r'.
80 * These parameters control various timing delays in the SDRAM controller
81 * that are expressed in terms of the number of SDRC clock cycles to
82 * wait; hence the clock rate dependency.
83 *
84 * Supports 2 different timing parameters for both chip selects.
85 *
86 * Note 1: the sdrc_init_params_cs[01] must be sorted rate descending.
87 * Note 2: If sdrc_init_params_cs_1 is not NULL it must be of same size
88 * as sdrc_init_params_cs_0.
89 *
90 * Fills in the struct omap_sdrc_params * for each chip select.
91 * Returns 0 upon success or -1 upon failure.
Paul Walmsley87246b72009-01-28 12:27:39 -070092 */
Jean Pihet58cda882009-07-24 19:43:25 -060093int omap2_sdrc_get_params(unsigned long r,
94 struct omap_sdrc_params **sdrc_cs0,
95 struct omap_sdrc_params **sdrc_cs1)
Paul Walmsley87246b72009-01-28 12:27:39 -070096{
Jean Pihet58cda882009-07-24 19:43:25 -060097 struct omap_sdrc_params *sp0, *sp1;
Paul Walmsley87246b72009-01-28 12:27:39 -070098
Jean Pihet58cda882009-07-24 19:43:25 -060099 if (!sdrc_init_params_cs0)
100 return -1;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700101
Jean Pihet58cda882009-07-24 19:43:25 -0600102 sp0 = sdrc_init_params_cs0;
103 sp1 = sdrc_init_params_cs1;
Paul Walmsley87246b72009-01-28 12:27:39 -0700104
Jean Pihet58cda882009-07-24 19:43:25 -0600105 while (sp0->rate && sp0->rate != r) {
106 sp0++;
107 if (sdrc_init_params_cs1)
108 sp1++;
109 }
Paul Walmsley87246b72009-01-28 12:27:39 -0700110
Jean Pihet58cda882009-07-24 19:43:25 -0600111 if (!sp0->rate)
112 return -1;
Paul Walmsley87246b72009-01-28 12:27:39 -0700113
Jean Pihet58cda882009-07-24 19:43:25 -0600114 *sdrc_cs0 = sp0;
115 *sdrc_cs1 = sp1;
116 return 0;
Paul Walmsley87246b72009-01-28 12:27:39 -0700117}
118
119
Paul Walmsleyf2ab9972009-01-28 12:27:37 -0700120void __init omap2_set_globals_sdrc(struct omap_globals *omap2_globals)
121{
Santosh Shilimkarb7ebb102010-02-15 18:03:37 +0530122 /* Static mapping, never released */
123 if (omap2_globals->sdrc) {
124 omap2_sdrc_base = ioremap(omap2_globals->sdrc, SZ_64K);
125 WARN_ON(!omap2_sdrc_base);
126 }
127 if (omap2_globals->sms) {
128 omap2_sms_base = ioremap(omap2_globals->sms, SZ_64K);
129 WARN_ON(!omap2_sms_base);
130 }
Paul Walmsleyf2ab9972009-01-28 12:27:37 -0700131}
132
Paul Walmsley98cfe5a2009-05-12 17:27:09 -0600133/**
134 * omap2_sdrc_init - initialize SMS, SDRC devices on boot
Jean Pihet58cda882009-07-24 19:43:25 -0600135 * @sdrc_cs[01]: pointers to a null-terminated list of struct omap_sdrc_params
136 * Support for 2 chip selects timings
Paul Walmsley98cfe5a2009-05-12 17:27:09 -0600137 *
138 * Turn on smart idle modes for SDRAM scheduler and controller.
139 * Program a known-good configuration for the SDRC to deal with buggy
140 * bootloaders.
141 */
Jean Pihet58cda882009-07-24 19:43:25 -0600142void __init omap2_sdrc_init(struct omap_sdrc_params *sdrc_cs0,
143 struct omap_sdrc_params *sdrc_cs1)
Paul Walmsleyf2ab9972009-01-28 12:27:37 -0700144{
145 u32 l;
146
147 l = sms_read_reg(SMS_SYSCONFIG);
148 l &= ~(0x3 << 3);
149 l |= (0x2 << 3);
150 sms_write_reg(l, SMS_SYSCONFIG);
151
152 l = sdrc_read_reg(SDRC_SYSCONFIG);
153 l &= ~(0x3 << 3);
154 l |= (0x2 << 3);
155 sdrc_write_reg(l, SDRC_SYSCONFIG);
Paul Walmsley87246b72009-01-28 12:27:39 -0700156
Jean Pihet58cda882009-07-24 19:43:25 -0600157 sdrc_init_params_cs0 = sdrc_cs0;
158 sdrc_init_params_cs1 = sdrc_cs1;
Paul Walmsley98cfe5a2009-05-12 17:27:09 -0600159
160 /* XXX Enable SRFRONIDLEREQ here also? */
Paul Walmsley75f251e2009-07-24 19:44:01 -0600161 /*
162 * PWDENA should not be set due to 34xx erratum 1.150 - PWDENA
163 * can cause random memory corruption
164 */
Paul Walmsley98cfe5a2009-05-12 17:27:09 -0600165 l = (1 << SDRC_POWER_EXTCLKDIS_SHIFT) |
Paul Walmsley98cfe5a2009-05-12 17:27:09 -0600166 (1 << SDRC_POWER_PAGEPOLICY_SHIFT);
167 sdrc_write_reg(l, SDRC_POWER);
Kalle Jokiniemi8a917d22009-05-13 13:32:11 +0300168 omap2_sms_save_context();
Paul Walmsleyf2ab9972009-01-28 12:27:37 -0700169}
Tomi Valkeinenb90f8e72009-08-07 11:26:12 +0300170
171void omap2_sms_write_rot_control(u32 val, unsigned ctx)
172{
173 sms_write_reg(val, SMS_ROT_CONTROL(ctx));
174}
175
176void omap2_sms_write_rot_size(u32 val, unsigned ctx)
177{
178 sms_write_reg(val, SMS_ROT_SIZE(ctx));
179}
180
181void omap2_sms_write_rot_physical_ba(u32 val, unsigned ctx)
182{
183 sms_write_reg(val, SMS_ROT_PHYSICAL_BA(ctx));
184}
185