164b889b3SMichal Simek /* 264b889b3SMichal Simek * Xilinx SLCR driver 364b889b3SMichal Simek * 464b889b3SMichal Simek * Copyright (c) 2011-2013 Xilinx Inc. 564b889b3SMichal Simek * 664b889b3SMichal Simek * This program is free software; you can redistribute it and/or 764b889b3SMichal Simek * modify it under the terms of the GNU General Public License 864b889b3SMichal Simek * as published by the Free Software Foundation; either version 964b889b3SMichal Simek * 2 of the License, or (at your option) any later version. 1064b889b3SMichal Simek * 1164b889b3SMichal Simek * You should have received a copy of the GNU General Public 1264b889b3SMichal Simek * License along with this program; if not, write to the Free 1364b889b3SMichal Simek * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 1464b889b3SMichal Simek * 02139, USA. 1564b889b3SMichal Simek */ 1664b889b3SMichal Simek 1764b889b3SMichal Simek #include <linux/io.h> 18*64e68617SJosh Cartwright #include <linux/reboot.h> 19016f4dcaSMichal Simek #include <linux/mfd/syscon.h> 2064b889b3SMichal Simek #include <linux/of_address.h> 21016f4dcaSMichal Simek #include <linux/regmap.h> 2264b889b3SMichal Simek #include <linux/clk/zynq.h> 2364b889b3SMichal Simek #include "common.h" 2464b889b3SMichal Simek 25b5f177ffSSoren Brinkmann /* register offsets */ 26b5f177ffSSoren Brinkmann #define SLCR_UNLOCK_OFFSET 0x8 /* SCLR unlock register */ 2796790f0aSMichal Simek #define SLCR_PS_RST_CTRL_OFFSET 0x200 /* PS Software Reset Control */ 28b5f177ffSSoren Brinkmann #define SLCR_A9_CPU_RST_CTRL_OFFSET 0x244 /* CPU Software Reset Control */ 29b5f177ffSSoren Brinkmann #define SLCR_REBOOT_STATUS_OFFSET 0x258 /* PS Reboot Status */ 3000f7dc63SMichal Simek #define SLCR_PSS_IDCODE 0x530 /* PS IDCODE */ 31aa7eb2bbSMichal Simek 32b5f177ffSSoren Brinkmann #define SLCR_UNLOCK_MAGIC 0xDF0D 33aa7eb2bbSMichal Simek #define SLCR_A9_CPU_CLKSTOP 0x10 34aa7eb2bbSMichal Simek #define SLCR_A9_CPU_RST 0x1 3500f7dc63SMichal Simek #define SLCR_PSS_IDCODE_DEVICE_SHIFT 12 3600f7dc63SMichal Simek #define SLCR_PSS_IDCODE_DEVICE_MASK 0x1F 37aa7eb2bbSMichal Simek 387b274efeSSteffen Trumtrar static void __iomem *zynq_slcr_base; 39016f4dcaSMichal Simek static struct regmap *zynq_slcr_regmap; 4064b889b3SMichal Simek 4164b889b3SMichal Simek /** 42871c6971SMichal Simek * zynq_slcr_write - Write to a register in SLCR block 43871c6971SMichal Simek * 44871c6971SMichal Simek * @val: Value to write to the register 45871c6971SMichal Simek * @offset: Register offset in SLCR block 46871c6971SMichal Simek * 47871c6971SMichal Simek * Return: a negative value on error, 0 on success 48871c6971SMichal Simek */ 49871c6971SMichal Simek static int zynq_slcr_write(u32 val, u32 offset) 50871c6971SMichal Simek { 51871c6971SMichal Simek return regmap_write(zynq_slcr_regmap, offset, val); 52871c6971SMichal Simek } 53871c6971SMichal Simek 54871c6971SMichal Simek /** 55871c6971SMichal Simek * zynq_slcr_read - Read a register in SLCR block 56871c6971SMichal Simek * 57871c6971SMichal Simek * @val: Pointer to value to be read from SLCR 58871c6971SMichal Simek * @offset: Register offset in SLCR block 59871c6971SMichal Simek * 60871c6971SMichal Simek * Return: a negative value on error, 0 on success 61871c6971SMichal Simek */ 62871c6971SMichal Simek static int zynq_slcr_read(u32 *val, u32 offset) 63871c6971SMichal Simek { 64871c6971SMichal Simek return regmap_read(zynq_slcr_regmap, offset, val); 65871c6971SMichal Simek } 66871c6971SMichal Simek 67871c6971SMichal Simek /** 6856880073SMichal Simek * zynq_slcr_unlock - Unlock SLCR registers 6956880073SMichal Simek * 7056880073SMichal Simek * Return: a negative value on error, 0 on success 7156880073SMichal Simek */ 7256880073SMichal Simek static inline int zynq_slcr_unlock(void) 7356880073SMichal Simek { 7456880073SMichal Simek zynq_slcr_write(SLCR_UNLOCK_MAGIC, SLCR_UNLOCK_OFFSET); 7556880073SMichal Simek 7656880073SMichal Simek return 0; 7756880073SMichal Simek } 7856880073SMichal Simek 7956880073SMichal Simek /** 8000f7dc63SMichal Simek * zynq_slcr_get_device_id - Read device code id 8100f7dc63SMichal Simek * 8200f7dc63SMichal Simek * Return: Device code id 8300f7dc63SMichal Simek */ 8400f7dc63SMichal Simek u32 zynq_slcr_get_device_id(void) 8500f7dc63SMichal Simek { 8600f7dc63SMichal Simek u32 val; 8700f7dc63SMichal Simek 8800f7dc63SMichal Simek zynq_slcr_read(&val, SLCR_PSS_IDCODE); 8900f7dc63SMichal Simek val >>= SLCR_PSS_IDCODE_DEVICE_SHIFT; 9000f7dc63SMichal Simek val &= SLCR_PSS_IDCODE_DEVICE_MASK; 9100f7dc63SMichal Simek 9200f7dc63SMichal Simek return val; 9300f7dc63SMichal Simek } 9400f7dc63SMichal Simek 9500f7dc63SMichal Simek /** 96*64e68617SJosh Cartwright * zynq_slcr_system_restart - Restart the entire system. 97*64e68617SJosh Cartwright * 98*64e68617SJosh Cartwright * @nb: Pointer to restart notifier block (unused) 99*64e68617SJosh Cartwright * @action: Reboot mode (unused) 100*64e68617SJosh Cartwright * @data: Restart handler private data (unused) 101*64e68617SJosh Cartwright * 102*64e68617SJosh Cartwright * Return: 0 always 10396790f0aSMichal Simek */ 104*64e68617SJosh Cartwright static 105*64e68617SJosh Cartwright int zynq_slcr_system_restart(struct notifier_block *nb, 106*64e68617SJosh Cartwright unsigned long action, void *data) 10796790f0aSMichal Simek { 10896790f0aSMichal Simek u32 reboot; 10996790f0aSMichal Simek 11096790f0aSMichal Simek /* 11196790f0aSMichal Simek * Unlock the SLCR then reset the system. 11296790f0aSMichal Simek * Note that this seems to require raw i/o 11396790f0aSMichal Simek * functions or there's a lockup? 11496790f0aSMichal Simek */ 11556880073SMichal Simek zynq_slcr_unlock(); 11696790f0aSMichal Simek 11796790f0aSMichal Simek /* 11896790f0aSMichal Simek * Clear 0x0F000000 bits of reboot status register to workaround 11996790f0aSMichal Simek * the FSBL not loading the bitstream after soft-reboot 12096790f0aSMichal Simek * This is a temporary solution until we know more. 12196790f0aSMichal Simek */ 122871c6971SMichal Simek zynq_slcr_read(&reboot, SLCR_REBOOT_STATUS_OFFSET); 123871c6971SMichal Simek zynq_slcr_write(reboot & 0xF0FFFFFF, SLCR_REBOOT_STATUS_OFFSET); 124871c6971SMichal Simek zynq_slcr_write(1, SLCR_PS_RST_CTRL_OFFSET); 125*64e68617SJosh Cartwright return 0; 12696790f0aSMichal Simek } 12796790f0aSMichal Simek 128*64e68617SJosh Cartwright static struct notifier_block zynq_slcr_restart_nb = { 129*64e68617SJosh Cartwright .notifier_call = zynq_slcr_system_restart, 130*64e68617SJosh Cartwright .priority = 192, 131*64e68617SJosh Cartwright }; 132*64e68617SJosh Cartwright 13396790f0aSMichal Simek /** 134aa7eb2bbSMichal Simek * zynq_slcr_cpu_start - Start cpu 135aa7eb2bbSMichal Simek * @cpu: cpu number 136aa7eb2bbSMichal Simek */ 137aa7eb2bbSMichal Simek void zynq_slcr_cpu_start(int cpu) 138aa7eb2bbSMichal Simek { 139871c6971SMichal Simek u32 reg; 140871c6971SMichal Simek 141871c6971SMichal Simek zynq_slcr_read(®, SLCR_A9_CPU_RST_CTRL_OFFSET); 1423db9e860SSoren Brinkmann reg &= ~(SLCR_A9_CPU_RST << cpu); 143871c6971SMichal Simek zynq_slcr_write(reg, SLCR_A9_CPU_RST_CTRL_OFFSET); 1443db9e860SSoren Brinkmann reg &= ~(SLCR_A9_CPU_CLKSTOP << cpu); 145871c6971SMichal Simek zynq_slcr_write(reg, SLCR_A9_CPU_RST_CTRL_OFFSET); 14650c7960aSSoren Brinkmann 14750c7960aSSoren Brinkmann zynq_slcr_cpu_state_write(cpu, false); 148aa7eb2bbSMichal Simek } 149aa7eb2bbSMichal Simek 150aa7eb2bbSMichal Simek /** 151aa7eb2bbSMichal Simek * zynq_slcr_cpu_stop - Stop cpu 152aa7eb2bbSMichal Simek * @cpu: cpu number 153aa7eb2bbSMichal Simek */ 154aa7eb2bbSMichal Simek void zynq_slcr_cpu_stop(int cpu) 155aa7eb2bbSMichal Simek { 156871c6971SMichal Simek u32 reg; 157871c6971SMichal Simek 158871c6971SMichal Simek zynq_slcr_read(®, SLCR_A9_CPU_RST_CTRL_OFFSET); 1593db9e860SSoren Brinkmann reg |= (SLCR_A9_CPU_CLKSTOP | SLCR_A9_CPU_RST) << cpu; 160871c6971SMichal Simek zynq_slcr_write(reg, SLCR_A9_CPU_RST_CTRL_OFFSET); 161aa7eb2bbSMichal Simek } 162aa7eb2bbSMichal Simek 163aa7eb2bbSMichal Simek /** 16450c7960aSSoren Brinkmann * zynq_slcr_cpu_state - Read/write cpu state 16550c7960aSSoren Brinkmann * @cpu: cpu number 166016f4dcaSMichal Simek * 16750c7960aSSoren Brinkmann * SLCR_REBOOT_STATUS save upper 2 bits (31/30 cpu states for cpu0 and cpu1) 16850c7960aSSoren Brinkmann * 0 means cpu is running, 1 cpu is going to die. 16950c7960aSSoren Brinkmann * 17050c7960aSSoren Brinkmann * Return: true if cpu is running, false if cpu is going to die 17150c7960aSSoren Brinkmann */ 17250c7960aSSoren Brinkmann bool zynq_slcr_cpu_state_read(int cpu) 17350c7960aSSoren Brinkmann { 17450c7960aSSoren Brinkmann u32 state; 17550c7960aSSoren Brinkmann 17650c7960aSSoren Brinkmann state = readl(zynq_slcr_base + SLCR_REBOOT_STATUS_OFFSET); 17750c7960aSSoren Brinkmann state &= 1 << (31 - cpu); 17850c7960aSSoren Brinkmann 17950c7960aSSoren Brinkmann return !state; 18050c7960aSSoren Brinkmann } 18150c7960aSSoren Brinkmann 18250c7960aSSoren Brinkmann /** 18350c7960aSSoren Brinkmann * zynq_slcr_cpu_state - Read/write cpu state 18450c7960aSSoren Brinkmann * @cpu: cpu number 18550c7960aSSoren Brinkmann * @die: cpu state - true if cpu is going to die 18650c7960aSSoren Brinkmann * 18750c7960aSSoren Brinkmann * SLCR_REBOOT_STATUS save upper 2 bits (31/30 cpu states for cpu0 and cpu1) 18850c7960aSSoren Brinkmann * 0 means cpu is running, 1 cpu is going to die. 18950c7960aSSoren Brinkmann */ 19050c7960aSSoren Brinkmann void zynq_slcr_cpu_state_write(int cpu, bool die) 19150c7960aSSoren Brinkmann { 19250c7960aSSoren Brinkmann u32 state, mask; 19350c7960aSSoren Brinkmann 19450c7960aSSoren Brinkmann state = readl(zynq_slcr_base + SLCR_REBOOT_STATUS_OFFSET); 19550c7960aSSoren Brinkmann mask = 1 << (31 - cpu); 19650c7960aSSoren Brinkmann if (die) 19750c7960aSSoren Brinkmann state |= mask; 19850c7960aSSoren Brinkmann else 19950c7960aSSoren Brinkmann state &= ~mask; 20050c7960aSSoren Brinkmann writel(state, zynq_slcr_base + SLCR_REBOOT_STATUS_OFFSET); 20150c7960aSSoren Brinkmann } 20250c7960aSSoren Brinkmann 20350c7960aSSoren Brinkmann /** 204016f4dcaSMichal Simek * zynq_early_slcr_init - Early slcr init function 205016f4dcaSMichal Simek * 206016f4dcaSMichal Simek * Return: 0 on success, negative errno otherwise. 207016f4dcaSMichal Simek * 208016f4dcaSMichal Simek * Called very early during boot from platform code to unlock SLCR. 209016f4dcaSMichal Simek */ 210016f4dcaSMichal Simek int __init zynq_early_slcr_init(void) 211016f4dcaSMichal Simek { 21264b889b3SMichal Simek struct device_node *np; 21364b889b3SMichal Simek 21464b889b3SMichal Simek np = of_find_compatible_node(NULL, NULL, "xlnx,zynq-slcr"); 21564b889b3SMichal Simek if (!np) { 21664b889b3SMichal Simek pr_err("%s: no slcr node found\n", __func__); 21764b889b3SMichal Simek BUG(); 21864b889b3SMichal Simek } 21964b889b3SMichal Simek 22064b889b3SMichal Simek zynq_slcr_base = of_iomap(np, 0); 22164b889b3SMichal Simek if (!zynq_slcr_base) { 22264b889b3SMichal Simek pr_err("%s: Unable to map I/O memory\n", __func__); 22364b889b3SMichal Simek BUG(); 22464b889b3SMichal Simek } 22564b889b3SMichal Simek 2265e218280SSteffen Trumtrar np->data = (__force void *)zynq_slcr_base; 2275e218280SSteffen Trumtrar 2283329659dSMichal Simek zynq_slcr_regmap = syscon_regmap_lookup_by_compatible("xlnx,zynq-slcr"); 2293329659dSMichal Simek if (IS_ERR(zynq_slcr_regmap)) { 2303329659dSMichal Simek pr_err("%s: failed to find zynq-slcr\n", __func__); 2313329659dSMichal Simek return -ENODEV; 2323329659dSMichal Simek } 2333329659dSMichal Simek 23464b889b3SMichal Simek /* unlock the SLCR so that registers can be changed */ 23556880073SMichal Simek zynq_slcr_unlock(); 23664b889b3SMichal Simek 237*64e68617SJosh Cartwright register_restart_handler(&zynq_slcr_restart_nb); 238*64e68617SJosh Cartwright 23964b889b3SMichal Simek pr_info("%s mapped to %p\n", np->name, zynq_slcr_base); 24064b889b3SMichal Simek 24164b889b3SMichal Simek of_node_put(np); 24264b889b3SMichal Simek 24364b889b3SMichal Simek return 0; 24464b889b3SMichal Simek } 245