blob: 08d11ad4f2e5857cbcf6878eb789da6ba94b91d4 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Kumar Gala006e2c82010-01-12 11:42:43 -06002/*
3 * Copyright 2008-2010 Freescale Semiconductor, Inc.
Kumar Gala006e2c82010-01-12 11:42:43 -06004 */
5
Becky Bruced1cb6cb2008-11-03 15:44:01 -06006#include <common.h>
Simon Glass970b61e2019-11-14 12:57:09 -07007#include <cpu_func.h>
Becky Bruced1cb6cb2008-11-03 15:44:01 -06008#include <asm/processor.h>
9#include <asm/mmu.h>
10#include <ioports.h>
11#include <lmb.h>
12#include <asm/io.h>
Kumar Gala56d150e2009-03-31 23:02:38 -050013#include <asm/mp.h>
Becky Bruced1cb6cb2008-11-03 15:44:01 -060014
15DECLARE_GLOBAL_DATA_PTR;
16
Michal Simek1669e182018-06-13 08:56:31 +020017int cpu_reset(u32 nr)
Kumar Gala56d150e2009-03-31 23:02:38 -050018{
19 /* dummy function so common/cmd_mp.c will build
20 * should be implemented in the future, when cpu_release()
21 * is supported. Be aware there may be a similiar bug
22 * as exists on MPC85xx w/its PIC having a timing window
23 * associated to resetting the core */
24 return 1;
25}
26
Michal Simek1669e182018-06-13 08:56:31 +020027int cpu_status(u32 nr)
Becky Bruced1cb6cb2008-11-03 15:44:01 -060028{
Kumar Gala56d150e2009-03-31 23:02:38 -050029 /* dummy function so common/cmd_mp.c will build */
30 return 0;
31}
32
Michal Simek1669e182018-06-13 08:56:31 +020033int cpu_disable(u32 nr)
Kumar Gala006e2c82010-01-12 11:42:43 -060034{
Kumar Gala84c70bd2010-01-12 11:51:52 -060035 volatile immap_t *immap = (immap_t *) CONFIG_SYS_CCSRBAR;
36 volatile ccsr_gur_t *gur = &immap->im_gur;
37
38 switch (nr) {
39 case 0:
40 setbits_be32(&gur->devdisr, MPC86xx_DEVDISR_CPU0);
41 break;
42 case 1:
43 setbits_be32(&gur->devdisr, MPC86xx_DEVDISR_CPU1);
44 break;
45 default:
46 printf("Invalid cpu number for disable %d\n", nr);
47 return 1;
48 }
49
50 return 0;
Kumar Gala006e2c82010-01-12 11:42:43 -060051}
52
Kumar Gala819a4792010-06-09 22:33:53 -050053int is_core_disabled(int nr) {
54 immap_t *immap = (immap_t *) CONFIG_SYS_CCSRBAR;
55 ccsr_gur_t *gur = &immap->im_gur;
56 u32 devdisr = in_be32(&gur->devdisr);
57
58 switch (nr) {
59 case 0:
60 return (devdisr & MPC86xx_DEVDISR_CPU0);
61 case 1:
62 return (devdisr & MPC86xx_DEVDISR_CPU1);
63 default:
64 printf("Invalid cpu number for disable %d\n", nr);
65 }
66
67 return 0;
68}
69
Simon Glassed38aef2020-05-10 11:40:03 -060070int cpu_release(u32 nr, int argc, char *const argv[])
Kumar Gala56d150e2009-03-31 23:02:38 -050071{
72 /* dummy function so common/cmd_mp.c will build
73 * should be implemented in the future */
74 return 1;
75}
Becky Bruced1cb6cb2008-11-03 15:44:01 -060076
York Suna28496f2012-10-08 07:44:25 +000077u32 determine_mp_bootpg(unsigned int *pagesize)
Kumar Gala56d150e2009-03-31 23:02:38 -050078{
York Suna28496f2012-10-08 07:44:25 +000079 if (pagesize)
80 *pagesize = 4096;
81
Becky Bruced1cb6cb2008-11-03 15:44:01 -060082 /* if we have 4G or more of memory, put the boot page at 4Gb-1M */
83 if ((u64)gd->ram_size > 0xfffff000)
Kumar Gala56d150e2009-03-31 23:02:38 -050084 return (0xfff00000);
85
86 return (gd->ram_size - (1024 * 1024));
87}
88
89void cpu_mp_lmb_reserve(struct lmb *lmb)
90{
York Suna28496f2012-10-08 07:44:25 +000091 u32 bootpg = determine_mp_bootpg(NULL);
Becky Bruced1cb6cb2008-11-03 15:44:01 -060092
93 /* tell u-boot we stole a page */
94 lmb_reserve(lmb, bootpg, 4096);
95}
96
97/*
98 * Copy the code for other cpus to execute into an
99 * aligned location accessible via BPTR
100 */
101void setup_mp(void)
102{
103 extern ulong __secondary_start_page;
104 ulong fixup = (ulong)&__secondary_start_page;
York Suna28496f2012-10-08 07:44:25 +0000105 u32 bootpg = determine_mp_bootpg(NULL);
Becky Bruced1cb6cb2008-11-03 15:44:01 -0600106 u32 bootpg_va;
107
Becky Bruced1cb6cb2008-11-03 15:44:01 -0600108 if (bootpg >= CONFIG_SYS_MAX_DDR_BAT_SIZE) {
109 /* We're not covered by the DDR mapping, set up BAT */
110 write_bat(DBAT7, CONFIG_SYS_SCRATCH_VA | BATU_BL_128K |
111 BATU_VS | BATU_VP,
112 bootpg | BATL_PP_RW | BATL_MEMCOHERENCE);
113 bootpg_va = CONFIG_SYS_SCRATCH_VA;
114 } else {
115 bootpg_va = bootpg;
116 }
117
118 memcpy((void *)bootpg_va, (void *)fixup, 4096);
119 flush_cache(bootpg_va, 4096);
120
121 /* remove the temporary BAT mapping */
122 if (bootpg >= CONFIG_SYS_MAX_DDR_BAT_SIZE)
123 write_bat(DBAT7, 0, 0);
124
125 /* If the physical location of bootpg is not at fff00000, set BPTR */
126 if (bootpg != 0xfff00000)
127 out_be32((uint *)(CONFIG_SYS_CCSRBAR + 0x20), 0x80000000 |
128 (bootpg >> 12));
129}