blob: 2fdf070a08b4f04f2d364bb3011329ff3bdffc1f [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Gabriel Huaua76df702014-07-26 11:35:43 -07002/*
3 * (C) Copyright 2014
4 * Gabriel Huau <contact@huau-gabriel.fr>
5 *
6 * (C) Copyright 2009 Freescale Semiconductor, Inc.
Gabriel Huaua76df702014-07-26 11:35:43 -07007 */
8
9#include <common.h>
Simon Glass62f9b652019-11-14 12:57:09 -070010#include <cpu_func.h>
Gabriel Huaua76df702014-07-26 11:35:43 -070011#include <asm/io.h>
Masahiro Yamada1221ce42016-09-21 11:28:55 +090012#include <linux/errno.h>
Gabriel Huaua76df702014-07-26 11:35:43 -070013#include <asm/arch/sys_proto.h>
14#include <asm/arch/imx-regs.h>
15
16#define MAX_CPUS 4
17static struct src *src = (struct src *)SRC_BASE_ADDR;
18
19static uint32_t cpu_reset_mask[MAX_CPUS] = {
20 0, /* We don't really want to modify the cpu0 */
21 SRC_SCR_CORE_1_RESET_MASK,
22 SRC_SCR_CORE_2_RESET_MASK,
23 SRC_SCR_CORE_3_RESET_MASK
24};
25
26static uint32_t cpu_ctrl_mask[MAX_CPUS] = {
27 0, /* We don't really want to modify the cpu0 */
28 SRC_SCR_CORE_1_ENABLE_MASK,
29 SRC_SCR_CORE_2_ENABLE_MASK,
30 SRC_SCR_CORE_3_ENABLE_MASK
31};
32
Michal Simek20b016a2018-06-13 08:56:31 +020033int cpu_reset(u32 nr)
Gabriel Huaua76df702014-07-26 11:35:43 -070034{
35 /* Software reset of the CPU N */
36 src->scr |= cpu_reset_mask[nr];
37 return 0;
38}
39
Michal Simek20b016a2018-06-13 08:56:31 +020040int cpu_status(u32 nr)
Gabriel Huaua76df702014-07-26 11:35:43 -070041{
42 printf("core %d => %d\n", nr, !!(src->scr & cpu_ctrl_mask[nr]));
43 return 0;
44}
45
Michal Simek20b016a2018-06-13 08:56:31 +020046int cpu_release(u32 nr, int argc, char *const argv[])
Gabriel Huaua76df702014-07-26 11:35:43 -070047{
48 uint32_t boot_addr;
49
50 boot_addr = simple_strtoul(argv[0], NULL, 16);
51
52 switch (nr) {
53 case 1:
54 src->gpr3 = boot_addr;
55 break;
56 case 2:
57 src->gpr5 = boot_addr;
58 break;
59 case 3:
60 src->gpr7 = boot_addr;
61 break;
62 default:
63 return 1;
64 }
65
66 /* CPU N is ready to start */
67 src->scr |= cpu_ctrl_mask[nr];
68
69 return 0;
70}
71
72int is_core_valid(unsigned int core)
73{
74 uint32_t nr_cores = get_nr_cpus();
75
76 if (core > nr_cores)
77 return 0;
78
79 return 1;
80}
81
Michal Simek20b016a2018-06-13 08:56:31 +020082int cpu_disable(u32 nr)
Gabriel Huaua76df702014-07-26 11:35:43 -070083{
84 /* Disable the CPU N */
85 src->scr &= ~cpu_ctrl_mask[nr];
86 return 0;
87}