cregit-Linux how code gets into the kernel

Release 4.15 arch/arm/mach-shmobile/pm-rcar-gen2.c

/*
 * R-Car Generation 2 Power management support
 *
 * Copyright (C) 2013 - 2015  Renesas Electronics Corporation
 * Copyright (C) 2011  Renesas Solutions Corp.
 * Copyright (C) 2011  Magnus Damm
 *
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 */

#include <linux/kernel.h>
#include <linux/ioport.h>
#include <linux/of.h>
#include <linux/of_address.h>
#include <linux/smp.h>
#include <linux/soc/renesas/rcar-sysc.h>
#include <asm/io.h>
#include "common.h"
#include "rcar-gen2.h"

/* RST */

#define RST		0xe6160000


#define CA15BAR		0x0020		
/* CA15 Boot Address Register */

#define CA7BAR		0x0030		
/* CA7 Boot Address Register */

#define CA15RESCNT	0x0040		
/* CA15 Reset Control Register */

#define CA7RESCNT	0x0044		
/* CA7 Reset Control Register */

/* SYS Boot Address Register */

#define SBAR_BAREN	BIT(4)		
/* SBAR is valid */

/* Reset Control Registers */

#define CA15RESCNT_CODE	0xa5a50000

#define CA15RESCNT_CPUS	0xf		
/* CPU0-3 */

#define CA7RESCNT_CODE	0x5a5a0000

#define CA7RESCNT_CPUS	0xf		
/* CPU0-3 */


/* On-chip RAM */

#define ICRAM1		0xe63c0000	
/* Inter Connect RAM1 (4 KiB) */


static inline u32 phys_to_sbar(phys_addr_t addr) { return (addr >> 8) & 0xfffffc00; }

Contributors

PersonTokensPropCommitsCommitProp
Geert Uytterhoeven19100.00%1100.00%
Total19100.00%1100.00%

/* SYSC */ #define SYSCIER 0x0c #define SYSCIMR 0x10 #if defined(CONFIG_SMP)
static void __init rcar_gen2_sysc_init(u32 syscier) { rcar_sysc_init(0xe6180000, syscier); }

Contributors

PersonTokensPropCommitsCommitProp
Hisashi Nakamura1376.47%133.33%
Gaku Inami317.65%133.33%
Geert Uytterhoeven15.88%133.33%
Total17100.00%3100.00%

#else /* CONFIG_SMP */
static inline void rcar_gen2_sysc_init(u32 syscier) {}

Contributors

PersonTokensPropCommitsCommitProp
Hisashi Nakamura666.67%150.00%
Gaku Inami333.33%150.00%
Total9100.00%2100.00%

#endif /* CONFIG_SMP */
void __init rcar_gen2_pm_init(void) { void __iomem *p; u32 bar; static int once; struct device_node *np, *cpus; bool has_a7 = false; bool has_a15 = false; struct resource res; u32 syscier = 0; int error; if (once++) return; cpus = of_find_node_by_path("/cpus"); if (!cpus) return; for_each_child_of_node(cpus, np) { if (of_device_is_compatible(np, "arm,cortex-a15")) has_a15 = true; else if (of_device_is_compatible(np, "arm,cortex-a7")) has_a7 = true; } if (of_machine_is_compatible("renesas,r8a7790")) syscier = 0x013111ef; else if (of_machine_is_compatible("renesas,r8a7791")) syscier = 0x00111003; np = of_find_compatible_node(NULL, NULL, "renesas,smp-sram"); if (!np) { /* No smp-sram in DT, fall back to hardcoded address */ res = (struct resource)DEFINE_RES_MEM(ICRAM1, shmobile_boot_size); goto map; } error = of_address_to_resource(np, 0, &res); if (error) { pr_err("Failed to get smp-sram address: %d\n", error); return; } map: /* RAM for jump stub, because BAR requires 256KB aligned address */ if (res.start & (256 * 1024 - 1) || resource_size(&res) < shmobile_boot_size) { pr_err("Invalid smp-sram region\n"); return; } p = ioremap(res.start, resource_size(&res)); if (!p) return; memcpy_toio(p, shmobile_boot_vector, shmobile_boot_size); iounmap(p); /* setup reset vectors */ p = ioremap_nocache(RST, 0x63); bar = phys_to_sbar(res.start); if (has_a15) { writel_relaxed(bar, p + CA15BAR); writel_relaxed(bar | SBAR_BAREN, p + CA15BAR); /* de-assert reset for CA15 CPUs */ writel_relaxed((readl_relaxed(p + CA15RESCNT) & ~CA15RESCNT_CPUS) | CA15RESCNT_CODE, p + CA15RESCNT); } if (has_a7) { writel_relaxed(bar, p + CA7BAR); writel_relaxed(bar | SBAR_BAREN, p + CA7BAR); /* de-assert reset for CA7 CPUs */ writel_relaxed((readl_relaxed(p + CA7RESCNT) & ~CA7RESCNT_CPUS) | CA7RESCNT_CODE, p + CA7RESCNT); } iounmap(p); rcar_gen2_sysc_init(syscier); shmobile_smp_apmu_suspend_init(); }

Contributors

PersonTokensPropCommitsCommitProp
Gaku Inami13033.85%116.67%
Geert Uytterhoeven12632.81%233.33%
Magnus Damm11128.91%233.33%
Hisashi Nakamura174.43%116.67%
Total384100.00%6100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Geert Uytterhoeven18735.02%555.56%
Gaku Inami14126.40%111.11%
Magnus Damm13825.84%222.22%
Hisashi Nakamura6812.73%111.11%
Total534100.00%9100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.