Peter De Schrijver | b36ab97 | 2012-02-10 01:47:45 +0200 | [diff] [blame] | 1 | /* |
| 2 | * arch/arm/mach-tegra/reset.c |
| 3 | * |
| 4 | * Copyright (C) 2011,2012 NVIDIA Corporation. |
| 5 | * |
| 6 | * This software is licensed under the terms of the GNU General Public |
| 7 | * License version 2, as published by the Free Software Foundation, and |
| 8 | * may be copied, distributed, and modified under those terms. |
| 9 | * |
| 10 | * This program is distributed in the hope that it will be useful, |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | * GNU General Public License for more details. |
| 14 | * |
| 15 | */ |
| 16 | |
Thierry Reding | a0524ac | 2014-07-11 09:44:49 +0200 | [diff] [blame] | 17 | #include <linux/bitops.h> |
| 18 | #include <linux/cpumask.h> |
Peter De Schrijver | b36ab97 | 2012-02-10 01:47:45 +0200 | [diff] [blame] | 19 | #include <linux/init.h> |
| 20 | #include <linux/io.h> |
Peter De Schrijver | b36ab97 | 2012-02-10 01:47:45 +0200 | [diff] [blame] | 21 | |
Thierry Reding | 304664e | 2014-07-11 09:52:41 +0200 | [diff] [blame] | 22 | #include <soc/tegra/fuse.h> |
| 23 | |
Peter De Schrijver | b36ab97 | 2012-02-10 01:47:45 +0200 | [diff] [blame] | 24 | #include <asm/cacheflush.h> |
Alexandre Courbot | 265c89c | 2013-11-24 15:30:51 +0900 | [diff] [blame] | 25 | #include <asm/firmware.h> |
Thierry Reding | a0524ac | 2014-07-11 09:44:49 +0200 | [diff] [blame] | 26 | #include <asm/hardware/cache-l2x0.h> |
Peter De Schrijver | b36ab97 | 2012-02-10 01:47:45 +0200 | [diff] [blame] | 27 | |
Stephen Warren | 2be39c0 | 2012-10-04 14:24:09 -0600 | [diff] [blame] | 28 | #include "iomap.h" |
Stephen Warren | bb1de88 | 2012-10-04 14:16:59 -0600 | [diff] [blame] | 29 | #include "irammap.h" |
Peter De Schrijver | b36ab97 | 2012-02-10 01:47:45 +0200 | [diff] [blame] | 30 | #include "reset.h" |
Joseph Lo | d3f2936 | 2012-10-31 17:41:16 +0800 | [diff] [blame] | 31 | #include "sleep.h" |
Peter De Schrijver | b36ab97 | 2012-02-10 01:47:45 +0200 | [diff] [blame] | 32 | |
| 33 | #define TEGRA_IRAM_RESET_BASE (TEGRA_IRAM_BASE + \ |
| 34 | TEGRA_IRAM_RESET_HANDLER_OFFSET) |
| 35 | |
| 36 | static bool is_enabled; |
| 37 | |
Alexandre Courbot | ad14ece | 2013-11-24 15:30:50 +0900 | [diff] [blame] | 38 | static void __init tegra_cpu_reset_handler_set(const u32 reset_address) |
Peter De Schrijver | b36ab97 | 2012-02-10 01:47:45 +0200 | [diff] [blame] | 39 | { |
Peter De Schrijver | b36ab97 | 2012-02-10 01:47:45 +0200 | [diff] [blame] | 40 | void __iomem *evp_cpu_reset = |
| 41 | IO_ADDRESS(TEGRA_EXCEPTION_VECTORS_BASE + 0x100); |
| 42 | void __iomem *sb_ctrl = IO_ADDRESS(TEGRA_SB_BASE); |
| 43 | u32 reg; |
| 44 | |
Peter De Schrijver | b36ab97 | 2012-02-10 01:47:45 +0200 | [diff] [blame] | 45 | /* |
| 46 | * NOTE: This must be the one and only write to the EVP CPU reset |
| 47 | * vector in the entire system. |
| 48 | */ |
Alexandre Courbot | ad14ece | 2013-11-24 15:30:50 +0900 | [diff] [blame] | 49 | writel(reset_address, evp_cpu_reset); |
Peter De Schrijver | b36ab97 | 2012-02-10 01:47:45 +0200 | [diff] [blame] | 50 | wmb(); |
| 51 | reg = readl(evp_cpu_reset); |
| 52 | |
| 53 | /* |
| 54 | * Prevent further modifications to the physical reset vector. |
| 55 | * NOTE: Has no effect on chips prior to Tegra30. |
| 56 | */ |
Thierry Reding | c090e11 | 2014-07-11 11:06:20 +0200 | [diff] [blame] | 57 | reg = readl(sb_ctrl); |
| 58 | reg |= 2; |
| 59 | writel(reg, sb_ctrl); |
| 60 | wmb(); |
Alexandre Courbot | ad14ece | 2013-11-24 15:30:50 +0900 | [diff] [blame] | 61 | } |
| 62 | |
| 63 | static void __init tegra_cpu_reset_handler_enable(void) |
| 64 | { |
| 65 | void __iomem *iram_base = IO_ADDRESS(TEGRA_IRAM_RESET_BASE); |
| 66 | const u32 reset_address = TEGRA_IRAM_RESET_BASE + |
| 67 | tegra_cpu_reset_handler_offset; |
Alexandre Courbot | 265c89c | 2013-11-24 15:30:51 +0900 | [diff] [blame] | 68 | int err; |
Alexandre Courbot | ad14ece | 2013-11-24 15:30:50 +0900 | [diff] [blame] | 69 | |
| 70 | BUG_ON(is_enabled); |
| 71 | BUG_ON(tegra_cpu_reset_handler_size > TEGRA_IRAM_RESET_HANDLER_SIZE); |
| 72 | |
| 73 | memcpy(iram_base, (void *)__tegra_cpu_reset_handler_start, |
| 74 | tegra_cpu_reset_handler_size); |
| 75 | |
Alexandre Courbot | 265c89c | 2013-11-24 15:30:51 +0900 | [diff] [blame] | 76 | err = call_firmware_op(set_cpu_boot_addr, 0, reset_address); |
| 77 | switch (err) { |
| 78 | case -ENOSYS: |
| 79 | tegra_cpu_reset_handler_set(reset_address); |
| 80 | /* pass-through */ |
| 81 | case 0: |
| 82 | is_enabled = true; |
| 83 | break; |
| 84 | default: |
| 85 | pr_crit("Cannot set CPU reset handler: %d\n", err); |
| 86 | BUG(); |
| 87 | } |
Peter De Schrijver | b36ab97 | 2012-02-10 01:47:45 +0200 | [diff] [blame] | 88 | } |
| 89 | |
| 90 | void __init tegra_cpu_reset_handler_init(void) |
| 91 | { |
| 92 | |
| 93 | #ifdef CONFIG_SMP |
| 94 | __tegra_cpu_reset_handler_data[TEGRA_RESET_MASK_PRESENT] = |
Joseph Lo | 9e32366 | 2013-01-04 17:32:22 +0800 | [diff] [blame] | 95 | *((u32 *)cpu_possible_mask); |
Peter De Schrijver | b36ab97 | 2012-02-10 01:47:45 +0200 | [diff] [blame] | 96 | __tegra_cpu_reset_handler_data[TEGRA_RESET_STARTUP_SECONDARY] = |
| 97 | virt_to_phys((void *)tegra_secondary_startup); |
| 98 | #endif |
| 99 | |
Joseph Lo | d3f2936 | 2012-10-31 17:41:16 +0800 | [diff] [blame] | 100 | #ifdef CONFIG_PM_SLEEP |
Joseph Lo | 5b795d0 | 2013-08-12 17:40:00 +0800 | [diff] [blame] | 101 | __tegra_cpu_reset_handler_data[TEGRA_RESET_STARTUP_LP1] = |
Stephen Warren | fddb770 | 2013-08-20 16:19:15 -0600 | [diff] [blame] | 102 | TEGRA_IRAM_LPx_RESUME_AREA; |
Joseph Lo | d3f2936 | 2012-10-31 17:41:16 +0800 | [diff] [blame] | 103 | __tegra_cpu_reset_handler_data[TEGRA_RESET_STARTUP_LP2] = |
| 104 | virt_to_phys((void *)tegra_resume); |
| 105 | #endif |
| 106 | |
Peter De Schrijver | b36ab97 | 2012-02-10 01:47:45 +0200 | [diff] [blame] | 107 | tegra_cpu_reset_handler_enable(); |
| 108 | } |