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
|
/* IBM_PROLOG_BEGIN_TAG */
/* This is an automatically generated prolog. */
/* */
/* $Source: src/include/kernel/cpu.H $ */
/* */
/* OpenPOWER HostBoot Project */
/* */
/* Contributors Listed Below - COPYRIGHT 2010,2018 */
/* [+] International Business Machines 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. */
/* */
/* IBM_PROLOG_END_TAG */
/** @file cpu.H
* @brief Defines kernel information and functions about CPUs.
*
* In this kernel the term CPU refers to a hardware thread (SMT), not core.
*/
#ifndef __KERNEL_CPU_H
#define __KERNEL_CPU_H
#include <kernel/types.h>
#include <kernel/workitem.H>
#include <arch/ppc.H>
#include <builtins.h>
#include <sys/sync.h>
#include <util/lockfree/stack.H>
// See BookIV PIR definition.
#define KERNEL_MAX_SUPPORTED_NODES 4
// This constant is coming from the PIR: GGGGPPPRCCCCCTT
// 3-bits for chiP (P), 1-reserved bit, 5-Core bits (C), 2-for Thread (T)
#define KERNEL_MAX_SUPPORTED_CPUS_PER_NODE (8 * 2 * 32 * 4) // ChipId, reserved bit, core, thread
class Scheduler;
/** @struct cpu_t
* @brief Stores per-CPU kernel information.
*
* @note kernel_stack and master need to be at fixed locations in this
* structure due to usages in start.S (see ppcconsts.S).
*
* - kernel_stack is a double-word at cpu_t[0 bytes].
* - master is a byte at cpu_t[12 bytes].
*/
struct cpu_t
{
/** Stack to use while in kernel mode. */
void* kernel_stack;
/** Bottom of the kernel stack. */
void* kernel_stack_bottom;
/** ID of the CPU (PIR value) */
cpuid_t cpu;
struct
{
/** If the CPU is the master */
bool master:1;
/** If the CPU is active */
bool active:1;
/** If the CPU is winkled */
bool winkled:1;
/** Ensure alignment of master attribute for asm code. */
uint64_t __reserved_master:29;
} PACKED;
/** Pointer to the scheduler for this CPU (may not be unique) */
Scheduler* scheduler;
/** Location for scheduler to store per-CPU data, currently used
* for the local run-queue for processor affinity.
*/
void* scheduler_extra;
/** Location for task delay-list, managed by TimeManager. */
void* delay_list;
/** Pointer to the idle task for this CPU */
task_t* idle_task;
/** XSCOM mutex to serialize access per CPU */
mutex_t* xscom_mutex;
/** counter for executePeriodics */
size_t periodic_count;
/** Sequence ID of CPU initialization. */
uint64_t cpu_start_seqid;
/** Timebase Restore Value (used during core wakeup) */
uint64_t cpu_restore_tb;
/** Stack of WorkItems to be executed during doorbell wakeup */
Util::Lockfree::Stack<KernelWorkItem> doorbell_actions;
};
/** @fn getCpuId
* @brief Read the PIR value to determine the cpuid_t of this CPU.
*/
ALWAYS_INLINE
inline cpuid_t getCpuId()
{
return getPIR();
}
#endif
|