1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284
|
/* Copyright 2013-2014 IBM Corp.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
* implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <skiboot.h>
#include "spira.h"
#include <cpu.h>
#include <ccan/str/str.h>
#include <device.h>
#include "hdata.h"
struct dt_node * add_core_common(struct dt_node *cpus,
const struct sppcia_cpu_cache *cache,
const struct sppaca_cpu_timebase *tb,
uint32_t int_server, bool okay)
{
const char *name;
struct dt_node *cpu;
uint32_t version;
uint64_t freq;
const uint8_t pa_features[] = {
6, 0, 0xf6, 0x3f, 0xc7, 0x00, 0x80, 0xc0 };
prlog(PR_INFO, " Cache: I=%u D=%u/%u/%u/%u\n",
be32_to_cpu(cache->icache_size_kb),
be32_to_cpu(cache->l1_dcache_size_kb),
be32_to_cpu(cache->l2_dcache_size_kb),
be32_to_cpu(cache->l3_dcache_size_kb),
be32_to_cpu(cache->l35_dcache_size_kb));
/* Use the boot CPU PVR to make up a CPU name in the device-tree
* since the HDAT doesn't seem to tell....
*/
version = mfspr(SPR_PVR);
switch(PVR_TYPE(version)) {
case PVR_TYPE_P7:
name = "PowerPC,POWER7";
break;
case PVR_TYPE_P7P:
name = "PowerPC,POWER7+";
break;
case PVR_TYPE_P8E:
case PVR_TYPE_P8:
case PVR_TYPE_P8NVL:
name = "PowerPC,POWER8";
break;
case PVR_TYPE_P9:
name = "PowerPC,POWER9";
break;
default:
name = "PowerPC,Unknown";
}
cpu = dt_new_addr(cpus, name, int_server);
assert(cpu);
dt_add_property_string(cpu, "device_type", "cpu");
dt_add_property_string(cpu, "status", okay ? "okay" : "bad");
dt_add_property_cells(cpu, "reg", int_server);
dt_add_property_cells(cpu, "cpu-version", version);
dt_add_property(cpu, "64-bit", NULL, 0);
dt_add_property(cpu, "32-64-bridge", NULL, 0);
dt_add_property(cpu, "graphics", NULL, 0);
dt_add_property(cpu, "general-purpose", NULL, 0);
dt_add_property_cells(cpu, "ibm,processor-segment-sizes",
0x1c, 0x28, 0xffffffff, 0xffffffff);
dt_add_property_cells(cpu, "ibm,processor-page-sizes",
0xc, 0x10, 0x18, 0x22);
/* Page size encodings appear to be the same for P7 and P8 */
dt_add_property_cells(cpu, "ibm,segment-page-sizes",
0x0c, 0x000, 3, 0x0c, 0x0000, /* 4K seg 4k pages */
0x10, 0x0007, /* 4K seg 64k pages */
0x18, 0x0038, /* 4K seg 16M pages */
0x10, 0x110, 2, 0x10, 0x0001, /* 64K seg 64k pages */
0x18, 0x0008, /* 64K seg 16M pages */
0x18, 0x100, 1, 0x18, 0x0000, /* 16M seg 16M pages */
0x22, 0x120, 1, 0x22, 0x0003); /* 16G seg 16G pages */
dt_add_property(cpu, "ibm,pa-features",
pa_features, sizeof(pa_features));
dt_add_property_cells(cpu, "ibm,slb-size", 0x20);
dt_add_property_cells(cpu, "ibm,vmx", 0x2);
dt_add_property_cells(cpu, "ibm,dfp", 0x2);
dt_add_property_cells(cpu, "ibm,purr", 0x1);
dt_add_property_cells(cpu, "ibm,spurr", 0x1);
/*
* Do not create "clock-frequency" if the frequency doesn't
* fit in a single cell
*/
freq = ((uint64_t)be32_to_cpu(tb->actual_clock_speed)) * 1000000ul;
if (freq <= 0xfffffffful)
dt_add_property_cells(cpu, "clock-frequency", freq);
dt_add_property_cells(cpu, "ibm,extended-clock-frequency",
hi32(freq), lo32(freq));
/* FIXME: Hardcoding is bad. */
dt_add_property_cells(cpu, "timebase-frequency", 512000000);
dt_add_property_cells(cpu, "ibm,extended-timebase-frequency",
0, 512000000);
dt_add_property_cells(cpu, "reservation-granule-size",
be32_to_cpu(cache->reservation_size));
dt_add_property_cells(cpu, "d-tlb-size",
be32_to_cpu(cache->dtlb_entries));
dt_add_property_cells(cpu, "i-tlb-size",
be32_to_cpu(cache->itlb_entries));
/* Assume unified TLB */
dt_add_property_cells(cpu, "tlb-size",
be32_to_cpu(cache->dtlb_entries));
dt_add_property_cells(cpu, "d-tlb-sets",
be32_to_cpu(cache->dtlb_assoc_sets));
dt_add_property_cells(cpu, "i-tlb-sets",
be32_to_cpu(cache->itlb_assoc_sets));
dt_add_property_cells(cpu, "tlb-sets",
be32_to_cpu(cache->dtlb_assoc_sets));
dt_add_property_cells(cpu, "d-cache-block-size",
be32_to_cpu(cache->dcache_block_size));
dt_add_property_cells(cpu, "i-cache-block-size",
be32_to_cpu(cache->icache_block_size));
dt_add_property_cells(cpu, "d-cache-size",
be32_to_cpu(cache->l1_dcache_size_kb)*1024);
dt_add_property_cells(cpu, "i-cache-size",
be32_to_cpu(cache->icache_size_kb)*1024);
dt_add_property_cells(cpu, "i-cache-sets",
be32_to_cpu(cache->icache_assoc_sets));
dt_add_property_cells(cpu, "d-cache-sets",
be32_to_cpu(cache->dcache_assoc_sets));
if (cache->icache_line_size != cache->icache_block_size)
dt_add_property_cells(cpu, "i-cache-line-size",
be32_to_cpu(cache->icache_line_size));
if (cache->l1_dcache_line_size != cache->dcache_block_size)
dt_add_property_cells(cpu, "d-cache-line-size",
be32_to_cpu(cache->l1_dcache_line_size));
return cpu;
}
void add_core_attr(struct dt_node *cpu, uint32_t attr)
{
if (attr & CPU_ATTR_UNIFIED_PL1)
dt_add_property(cpu, "cache-unified", NULL, 0);
if (attr & CPU_ATTR_SPLIT_TLB)
dt_add_property(cpu, "tlb-split", NULL, 0);
if (attr & CPU_ATTR_TLBIA)
dt_add_property(cpu, "tlbia", NULL, 0);
if (attr & CPU_ATTR_PERF_MONITOR)
dt_add_property_cells(cpu, "performance-monitor", 0, 1);
if (attr & CPU_ATTR_EXTERN_CONT)
dt_add_property(cpu, "external-control", NULL, 0);
}
static struct dt_node *create_cache_node(struct dt_node *cpus,
const struct sppcia_cpu_cache *cache,
const char *name, uint32_t unit_addr,
int okay)
{
struct dt_node *node;
node = dt_new_addr(cpus, name, unit_addr);
assert(node);
dt_add_property_string(node, "device_type", "cache");
dt_add_property_cells(node, "reg", unit_addr);
dt_add_property_string(node, "status", okay ? "okay" : "bad");
dt_add_property(node, "cache-unified", NULL, 0);
/* Assume cache associavitity sets is same for L2, L3 and L3.5 */
dt_add_property_cells(node, "d-cache-sets",
be32_to_cpu(cache->l2_cache_assoc_sets));
dt_add_property_cells(node, "i-cache-sets",
be32_to_cpu(cache->l2_cache_assoc_sets));
return node;
}
static struct dt_node *l35_cache_node(struct dt_node *cpus,
const struct sppcia_cpu_cache *cache,
uint32_t unit_addr, int okay)
{
struct dt_node *node;
node = create_cache_node(cpus, cache, "l35-cache", unit_addr, okay);
dt_add_property_cells(node, "d-cache-size",
be32_to_cpu(cache->l35_dcache_size_kb) * 1024);
dt_add_property_cells(node, "i-cache-size",
be32_to_cpu(cache->l35_dcache_size_kb) * 1024);
if (cache->icache_line_size != cache->icache_block_size)
dt_add_property_cells(node, "i-cache-line-size",
be32_to_cpu(cache->icache_line_size));
if (cache->l35_cache_line_size != cache->dcache_block_size)
dt_add_property_cells(node, "d-cache-line-size",
be32_to_cpu(cache->l35_cache_line_size));
return node;
}
static struct dt_node *l3_cache_node(struct dt_node *cpus,
const struct sppcia_cpu_cache *cache,
uint32_t unit_addr, int okay)
{
struct dt_node *node;
node = create_cache_node(cpus, cache, "l3-cache", unit_addr, okay);
dt_add_property_cells(node, "d-cache-size",
be32_to_cpu(cache->l3_dcache_size_kb) * 1024);
dt_add_property_cells(node, "i-cache-size",
be32_to_cpu(cache->l3_dcache_size_kb) * 1024);
if (cache->icache_line_size != cache->icache_block_size)
dt_add_property_cells(node, "i-cache-line-size",
be32_to_cpu(cache->icache_line_size));
if (cache->l3_line_size != cache->dcache_block_size)
dt_add_property_cells(node, "d-cache-line-size",
be32_to_cpu(cache->l3_line_size));
return node;
}
static struct dt_node *l2_cache_node(struct dt_node *cpus,
const struct sppcia_cpu_cache *cache,
uint32_t unit_addr, int okay)
{
struct dt_node *node;
node = create_cache_node(cpus, cache, "l2-cache", unit_addr, okay);
dt_add_property_cells(node, "d-cache-size",
be32_to_cpu(cache->l2_dcache_size_kb) * 1024);
dt_add_property_cells(node, "i-cache-size",
be32_to_cpu(cache->l2_dcache_size_kb) * 1024);
if (cache->icache_line_size != cache->icache_block_size)
dt_add_property_cells(node, "i-cache-line-size",
be32_to_cpu(cache->icache_line_size));
if (cache->l2_line_size != cache->dcache_block_size)
dt_add_property_cells(node, "d-cache-line-size",
be32_to_cpu(cache->l2_line_size));
return node;
}
uint32_t add_core_cache_info(struct dt_node *cpus,
const struct sppcia_cpu_cache *cache,
uint32_t int_server, int okay)
{
struct dt_node *l2_node, *l3_node, *l35_node;
uint32_t unit_addr;
/* Use Processor Interrupt Line to genarate cache unit address */
unit_addr = 0x20 << 24 | int_server;
l2_node = l2_cache_node(cpus, cache, unit_addr, okay);
unit_addr = 0x30 << 24 | int_server;
l3_node = l3_cache_node(cpus, cache, unit_addr, okay);
/* Represents the next level of cache in the memory hierarchy */
dt_add_property_cells(l2_node, "l2-cache", l3_node->phandle);
if (be32_to_cpu(cache->l35_dcache_size_kb)) {
unit_addr = 0x35 << 24 | int_server;
l35_node = l35_cache_node(cpus, cache, unit_addr, okay);
dt_add_property_cells(l3_node, "l2-cache", l35_node->phandle);
}
return l2_node->phandle;
}
|