Lei Wen | 4301303 | 2011-02-09 18:06:58 +0530 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2011 |
| 3 | * Marvell Semiconductor <www.marvell.com> |
| 4 | * Written-by: Lei Wen <leiwen@marvell.com> |
| 5 | * |
| 6 | * See file CREDITS for list of people who contributed to this |
| 7 | * project. |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or |
| 10 | * modify it under the terms of the GNU General Public License as |
| 11 | * published by the Free Software Foundation; either version 2 of |
| 12 | * the License, or (at your option) any later version. |
| 13 | * |
| 14 | * This program is distributed in the hope that it will be useful, |
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 17 | * GNU General Public License for more details. |
| 18 | * |
| 19 | * You should have received a copy of the GNU General Public License |
| 20 | * along with this program; if not, write to the Free Software |
| 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, |
| 22 | * MA 02110-1301 USA |
| 23 | */ |
| 24 | |
| 25 | #include <common.h> |
Lei Wen | 24f41da | 2011-10-18 19:21:33 +0530 | [diff] [blame^] | 26 | #include <asm/arch/cpu.h> |
Lei Wen | 4301303 | 2011-02-09 18:06:58 +0530 | [diff] [blame] | 27 | #include <asm/arch/pantheon.h> |
| 28 | |
| 29 | /* |
| 30 | * Timer registers |
| 31 | * Refer 6.2.9 in Datasheet |
| 32 | */ |
| 33 | struct panthtmr_registers { |
| 34 | u32 clk_ctrl; /* Timer clk control reg */ |
| 35 | u32 match[9]; /* Timer match registers */ |
| 36 | u32 count[3]; /* Timer count registers */ |
| 37 | u32 status[3]; |
| 38 | u32 ie[3]; |
| 39 | u32 preload[3]; /* Timer preload value */ |
| 40 | u32 preload_ctrl[3]; |
| 41 | u32 wdt_match_en; |
| 42 | u32 wdt_match_r; |
| 43 | u32 wdt_val; |
| 44 | u32 wdt_sts; |
| 45 | u32 icr[3]; |
| 46 | u32 wdt_icr; |
| 47 | u32 cer; /* Timer count enable reg */ |
| 48 | u32 cmr; |
| 49 | u32 ilr[3]; |
| 50 | u32 wcr; |
| 51 | u32 wfar; |
| 52 | u32 wsar; |
| 53 | u32 cvwr[3]; |
| 54 | }; |
| 55 | |
| 56 | #define TIMER 0 /* Use TIMER 0 */ |
| 57 | /* Each timer has 3 match registers */ |
| 58 | #define MATCH_CMP(x) ((3 * TIMER) + x) |
| 59 | #define TIMER_LOAD_VAL 0xffffffff |
| 60 | #define COUNT_RD_REQ 0x1 |
| 61 | |
| 62 | DECLARE_GLOBAL_DATA_PTR; |
| 63 | /* Using gd->tbu from timestamp and gd->tbl for lastdec */ |
| 64 | |
| 65 | /* |
| 66 | * For preventing risk of instability in reading counter value, |
| 67 | * first set read request to register cvwr and then read same |
| 68 | * register after it captures counter value. |
| 69 | */ |
| 70 | ulong read_timer(void) |
| 71 | { |
| 72 | struct panthtmr_registers *panthtimers = |
| 73 | (struct panthtmr_registers *) PANTHEON_TIMER_BASE; |
| 74 | volatile int loop=100; |
| 75 | ulong val; |
| 76 | |
| 77 | writel(COUNT_RD_REQ, &panthtimers->cvwr); |
| 78 | while (loop--) |
| 79 | val = readl(&panthtimers->cvwr); |
| 80 | |
| 81 | /* |
| 82 | * This stop gcc complain and prevent loop mistake init to 0 |
| 83 | */ |
| 84 | val = readl(&panthtimers->cvwr); |
| 85 | |
| 86 | return val; |
| 87 | } |
| 88 | |
Lei Wen | 4301303 | 2011-02-09 18:06:58 +0530 | [diff] [blame] | 89 | ulong get_timer_masked(void) |
| 90 | { |
| 91 | ulong now = read_timer(); |
| 92 | |
| 93 | if (now >= gd->tbl) { |
| 94 | /* normal mode */ |
| 95 | gd->tbu += now - gd->tbl; |
| 96 | } else { |
| 97 | /* we have an overflow ... */ |
| 98 | gd->tbu += now + TIMER_LOAD_VAL - gd->tbl; |
| 99 | } |
| 100 | gd->tbl = now; |
| 101 | |
| 102 | return gd->tbu; |
| 103 | } |
| 104 | |
Lei Wen | 4301303 | 2011-02-09 18:06:58 +0530 | [diff] [blame] | 105 | ulong get_timer(ulong base) |
| 106 | { |
| 107 | return ((get_timer_masked() / (CONFIG_SYS_HZ_CLOCK / 1000)) - |
| 108 | base); |
| 109 | } |
| 110 | |
Lei Wen | 4301303 | 2011-02-09 18:06:58 +0530 | [diff] [blame] | 111 | void __udelay(unsigned long usec) |
| 112 | { |
| 113 | ulong delayticks; |
| 114 | ulong endtime; |
| 115 | |
| 116 | delayticks = (usec * (CONFIG_SYS_HZ_CLOCK / 1000000)); |
| 117 | endtime = get_timer_masked() + delayticks; |
| 118 | |
| 119 | while (get_timer_masked() < endtime) |
| 120 | ; |
| 121 | } |
| 122 | |
| 123 | /* |
| 124 | * init the Timer |
| 125 | */ |
| 126 | int timer_init(void) |
| 127 | { |
| 128 | struct panthapb_registers *apb1clkres = |
| 129 | (struct panthapb_registers *) PANTHEON_APBC_BASE; |
| 130 | struct panthtmr_registers *panthtimers = |
| 131 | (struct panthtmr_registers *) PANTHEON_TIMER_BASE; |
| 132 | |
| 133 | /* Enable Timer clock at 3.25 MHZ */ |
| 134 | writel(APBC_APBCLK | APBC_FNCLK | APBC_FNCLKSEL(3), &apb1clkres->timers); |
| 135 | |
| 136 | /* load value into timer */ |
| 137 | writel(0x0, &panthtimers->clk_ctrl); |
| 138 | /* Use Timer 0 Match Resiger 0 */ |
| 139 | writel(TIMER_LOAD_VAL, &panthtimers->match[MATCH_CMP(0)]); |
| 140 | /* Preload value is 0 */ |
| 141 | writel(0x0, &panthtimers->preload[TIMER]); |
| 142 | /* Enable match comparator 0 for Timer 0 */ |
| 143 | writel(0x1, &panthtimers->preload_ctrl[TIMER]); |
| 144 | |
| 145 | /* Enable timer 0 */ |
| 146 | writel(0x1, &panthtimers->cer); |
| 147 | /* init the gd->tbu and gd->tbl value */ |
Graeme Russ | 944a7fe | 2011-07-15 02:21:14 +0000 | [diff] [blame] | 148 | gd->tbl = read_timer(); |
| 149 | gd->tbu = 0; |
Lei Wen | 4301303 | 2011-02-09 18:06:58 +0530 | [diff] [blame] | 150 | |
| 151 | return 0; |
| 152 | } |
| 153 | |
| 154 | #define MPMU_APRR_WDTR (1<<4) |
| 155 | #define TMR_WFAR 0xbaba /* WDT Register First key */ |
| 156 | #define TMP_WSAR 0xeb10 /* WDT Register Second key */ |
| 157 | |
| 158 | /* |
| 159 | * This function uses internal Watchdog Timer |
| 160 | * based reset mechanism. |
| 161 | * Steps to write watchdog registers (protected access) |
| 162 | * 1. Write key value to TMR_WFAR reg. |
| 163 | * 2. Write key value to TMP_WSAR reg. |
| 164 | * 3. Perform write operation. |
| 165 | */ |
| 166 | void reset_cpu (unsigned long ignored) |
| 167 | { |
| 168 | struct panthmpmu_registers *mpmu = |
| 169 | (struct panthmpmu_registers *) PANTHEON_MPMU_BASE; |
| 170 | struct panthtmr_registers *panthtimers = |
| 171 | (struct panthtmr_registers *) PANTHEON_WD_TIMER_BASE; |
| 172 | u32 val; |
| 173 | |
| 174 | /* negate hardware reset to the WDT after system reset */ |
| 175 | val = readl(&mpmu->aprr); |
| 176 | val = val | MPMU_APRR_WDTR; |
| 177 | writel(val, &mpmu->aprr); |
| 178 | |
| 179 | /* reset/enable WDT clock */ |
| 180 | writel(APBC_APBCLK, &mpmu->wdtpcr); |
| 181 | |
| 182 | /* clear previous WDT status */ |
| 183 | writel(TMR_WFAR, &panthtimers->wfar); |
| 184 | writel(TMP_WSAR, &panthtimers->wsar); |
| 185 | writel(0, &panthtimers->wdt_sts); |
| 186 | |
| 187 | /* set match counter */ |
| 188 | writel(TMR_WFAR, &panthtimers->wfar); |
| 189 | writel(TMP_WSAR, &panthtimers->wsar); |
| 190 | writel(0xf, &panthtimers->wdt_match_r); |
| 191 | |
| 192 | /* enable WDT reset */ |
| 193 | writel(TMR_WFAR, &panthtimers->wfar); |
| 194 | writel(TMP_WSAR, &panthtimers->wsar); |
| 195 | writel(0x3, &panthtimers->wdt_match_en); |
| 196 | |
| 197 | /*enable functional WDT clock */ |
| 198 | writel(APBC_APBCLK | APBC_FNCLK, &mpmu->wdtpcr); |
| 199 | } |