blob: ce300eac5b0e858cf1d8340016389449d3e70568 [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>
7#include <asm/processor.h>
8#include <asm/mmu.h>
9#include <ioports.h>
10#include <lmb.h>
11#include <asm/io.h>
Kumar Gala56d150e2009-03-31 23:02:38 -050012#include <asm/mp.h>
Becky Bruced1cb6cb2008-11-03 15:44:01 -060013
14DECLARE_GLOBAL_DATA_PTR;
15
Michal Simek1669e182018-06-13 08:56:31 +020016int cpu_reset(u32 nr)
Kumar Gala56d150e2009-03-31 23:02:38 -050017{
18 /* dummy function so common/cmd_mp.c will build
19 * should be implemented in the future, when cpu_release()
20 * is supported. Be aware there may be a similiar bug
21 * as exists on MPC85xx w/its PIC having a timing window
22 * associated to resetting the core */
23 return 1;
24}
25
Michal Simek1669e182018-06-13 08:56:31 +020026int cpu_status(u32 nr)
Becky Bruced1cb6cb2008-11-03 15:44:01 -060027{
Kumar Gala56d150e2009-03-31 23:02:38 -050028 /* dummy function so common/cmd_mp.c will build */
29 return 0;
30}
31
Michal Simek1669e182018-06-13 08:56:31 +020032int cpu_disable(u32 nr)
Kumar Gala006e2c82010-01-12 11:42:43 -060033{
Kumar Gala84c70bd2010-01-12 11:51:52 -060034 volatile immap_t *immap = (immap_t *) CONFIG_SYS_CCSRBAR;
35 volatile ccsr_gur_t *gur = &immap->im_gur;
36
37 switch (nr) {
38 case 0:
39 setbits_be32(&gur->devdisr, MPC86xx_DEVDISR_CPU0);
40 break;
41 case 1:
42 setbits_be32(&gur->devdisr, MPC86xx_DEVDISR_CPU1);
43 break;
44 default:
45 printf("Invalid cpu number for disable %d\n", nr);
46 return 1;
47 }
48
49 return 0;
Kumar Gala006e2c82010-01-12 11:42:43 -060050}
51
Kumar Gala819a4792010-06-09 22:33:53 -050052int is_core_disabled(int nr) {
53 immap_t *immap = (immap_t *) CONFIG_SYS_CCSRBAR;
54 ccsr_gur_t *gur = &immap->im_gur;
55 u32 devdisr = in_be32(&gur->devdisr);
56
57 switch (nr) {
58 case 0:
59 return (devdisr & MPC86xx_DEVDISR_CPU0);
60 case 1:
61 return (devdisr & MPC86xx_DEVDISR_CPU1);
62 default:
63 printf("Invalid cpu number for disable %d\n", nr);
64 }
65
66 return 0;
67}
68
Michal Simek1669e182018-06-13 08:56:31 +020069int cpu_release(u32 nr, int argc, char * const argv[])
Kumar Gala56d150e2009-03-31 23:02:38 -050070{
71 /* dummy function so common/cmd_mp.c will build
72 * should be implemented in the future */
73 return 1;
74}
Becky Bruced1cb6cb2008-11-03 15:44:01 -060075
York Suna28496f2012-10-08 07:44:25 +000076u32 determine_mp_bootpg(unsigned int *pagesize)
Kumar Gala56d150e2009-03-31 23:02:38 -050077{
York Suna28496f2012-10-08 07:44:25 +000078 if (pagesize)
79 *pagesize = 4096;
80
Becky Bruced1cb6cb2008-11-03 15:44:01 -060081 /* if we have 4G or more of memory, put the boot page at 4Gb-1M */
82 if ((u64)gd->ram_size > 0xfffff000)
Kumar Gala56d150e2009-03-31 23:02:38 -050083 return (0xfff00000);
84
85 return (gd->ram_size - (1024 * 1024));
86}
87
88void cpu_mp_lmb_reserve(struct lmb *lmb)
89{
York Suna28496f2012-10-08 07:44:25 +000090 u32 bootpg = determine_mp_bootpg(NULL);
Becky Bruced1cb6cb2008-11-03 15:44:01 -060091
92 /* tell u-boot we stole a page */
93 lmb_reserve(lmb, bootpg, 4096);
94}
95
96/*
97 * Copy the code for other cpus to execute into an
98 * aligned location accessible via BPTR
99 */
100void setup_mp(void)
101{
102 extern ulong __secondary_start_page;
103 ulong fixup = (ulong)&__secondary_start_page;
York Suna28496f2012-10-08 07:44:25 +0000104 u32 bootpg = determine_mp_bootpg(NULL);
Becky Bruced1cb6cb2008-11-03 15:44:01 -0600105 u32 bootpg_va;
106
Becky Bruced1cb6cb2008-11-03 15:44:01 -0600107 if (bootpg >= CONFIG_SYS_MAX_DDR_BAT_SIZE) {
108 /* We're not covered by the DDR mapping, set up BAT */
109 write_bat(DBAT7, CONFIG_SYS_SCRATCH_VA | BATU_BL_128K |
110 BATU_VS | BATU_VP,
111 bootpg | BATL_PP_RW | BATL_MEMCOHERENCE);
112 bootpg_va = CONFIG_SYS_SCRATCH_VA;
113 } else {
114 bootpg_va = bootpg;
115 }
116
117 memcpy((void *)bootpg_va, (void *)fixup, 4096);
118 flush_cache(bootpg_va, 4096);
119
120 /* remove the temporary BAT mapping */
121 if (bootpg >= CONFIG_SYS_MAX_DDR_BAT_SIZE)
122 write_bat(DBAT7, 0, 0);
123
124 /* If the physical location of bootpg is not at fff00000, set BPTR */
125 if (bootpg != 0xfff00000)
126 out_be32((uint *)(CONFIG_SYS_CCSRBAR + 0x20), 0x80000000 |
127 (bootpg >> 12));
128}