aboutsummaryrefslogtreecommitdiff
path: root/platforms/astbmc/witherspoon.c
blob: c5227398e401a55d695b4277d7b71b5f594325e1 (plain)
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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
/* Copyright 2017 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 <device.h>
#include <console.h>
#include <chip.h>
#include <ipmi.h>
#include <psi.h>
#include <npu-regs.h>
#include <xscom.h>
#include <xscom-p9-regs.h>
#include <timebase.h>
#include <pci.h>
#include <pci-slot.h>
#include <phb4.h>

#include "astbmc.h"

static const struct slot_table_entry witherspoon_gpu0[] = {
	{
		.etype = st_pluggable_slot,
		.location = ST_LOC_DEVFN(0x80,0),
		.name = "GPU0",
	},
	{ .etype = st_end },
};

static const struct slot_table_entry witherspoon_gpu1[] = {
	{
		.etype = st_pluggable_slot,
		.location = ST_LOC_DEVFN(0xa0,0),
		.name = "GPU1",
	},
	{ .etype = st_end },
};

static const struct slot_table_entry witherspoon_gpu2[] = {
	{
		.etype = st_pluggable_slot,
		.location = ST_LOC_DEVFN(0xc0,0),
		.name = "GPU2",
	},
	{ .etype = st_end },
};

static const struct slot_table_entry witherspoon_gpu3[] = {
	{
		.etype = st_pluggable_slot,
		.location = ST_LOC_DEVFN(0x60,0),
		.name = "GPU3",
	},
	{ .etype = st_end },
};

static const struct slot_table_entry witherspoon_gpu4[] = {
	{
		.etype = st_pluggable_slot,
		.location = ST_LOC_DEVFN(0x80,0),
		.name = "GPU4",
	},
	{ .etype = st_end },
};

static const struct slot_table_entry witherspoon_gpu5[] = {
	{
		.etype = st_pluggable_slot,
		.location = ST_LOC_DEVFN(0xa0,0),
		.name = "GPU5",
	},
	{ .etype = st_end },
};

static const struct slot_table_entry witherspoon_plx0_down[] = {
	{
		.etype = st_builtin_dev,
		.location = ST_LOC_DEVFN(0x4a,0),
		.children = witherspoon_gpu0,
		.name = "GPU0 down",
	},
	{
		.etype = st_builtin_dev,
		.location = ST_LOC_DEVFN(0x4b,0),
		.children = witherspoon_gpu1,
		.name = "GPU1 down",
	},
	{
		.etype = st_builtin_dev,
		.location = ST_LOC_DEVFN(0x4c,0),
		.children = witherspoon_gpu2,
		.name = "GPU2 down",
	},
	{ .etype = st_end },
};

static const struct slot_table_entry witherspoon_plx1_down[] = {
	{
		.etype = st_builtin_dev,
		.location = ST_LOC_DEVFN(0x44,0),
		.children = witherspoon_gpu3,
		.name = "GPU3 down",
	},
	{
		.etype = st_builtin_dev,
		.location = ST_LOC_DEVFN(0x45,0),
		.children = witherspoon_gpu4,
		.name = "GPU4 down",
	},
	{
		.etype = st_builtin_dev,
		.location = ST_LOC_DEVFN(0x4d,0),
		.children = witherspoon_gpu5,
		.name = "GPU5 down",
	},
	{ .etype = st_end },
};

static const struct slot_table_entry witherspoon_plx0_up[] = {
	{
		.etype = st_builtin_dev,
		.location = ST_LOC_DEVFN(0x20,0),
		.children = witherspoon_plx0_down,
	},
	{ .etype = st_end },
};

static const struct slot_table_entry witherspoon_plx1_up[] = {
	{
		.etype = st_builtin_dev,
		.location = ST_LOC_DEVFN(0x20,0),
		.children = witherspoon_plx1_down,
	},
	{ .etype = st_end },
};

static const struct slot_table_entry witherspoon_phb0_4_slot[] = {
	{
		.etype = st_builtin_dev,
		.location = ST_LOC_DEVFN(0,0),
		.children = witherspoon_plx0_up,
	},
	{ .etype = st_end },
};

static const struct slot_table_entry witherspoon_phb8_5_slot[] = {
	{
		.etype = st_builtin_dev,
		.location = ST_LOC_DEVFN(0,0),
		.children = witherspoon_plx1_up,
	},
	{ .etype = st_end },
};

static const struct slot_table_entry witherspoon_npu0_slots[] = {
	{
		.etype = st_npu_slot,
		.location = ST_LOC_NPU_GROUP(0),
		.name = "GPU0",
	},
	{
		.etype = st_npu_slot,
		.location = ST_LOC_NPU_GROUP(1),
		.name = "GPU1",
	},
	{
		.etype = st_npu_slot,
		.location = ST_LOC_NPU_GROUP(2),
		.name = "GPU2",
	},
	{ .etype = st_end },
};

static const struct slot_table_entry witherspoon_npu8_slots[] = {
	{
		.etype = st_npu_slot,
		.location = ST_LOC_NPU_GROUP(0),
		.name = "GPU3",
	},
	{
		.etype = st_npu_slot,
		.location = ST_LOC_NPU_GROUP(1),
		.name = "GPU4",
	},
	{
		.etype = st_npu_slot,
		.location = ST_LOC_NPU_GROUP(2),
		.name = "GPU5",
	},
	{ .etype = st_end },
};

static const struct slot_table_entry witherspoon_phb_table[] = {
	{
		.etype = st_phb,
		.location = ST_LOC_PHB(0,4),
		.children = witherspoon_phb0_4_slot,
	},
	{
		.etype = st_phb,
		.location = ST_LOC_PHB(0,7),
		.children = witherspoon_npu0_slots,
	},
	{
		.etype = st_phb,
		.location = ST_LOC_PHB(8,5),
		.children = witherspoon_phb8_5_slot,
	},
	{
		.etype = st_phb,
		.location = ST_LOC_PHB(8,8),
		.children = witherspoon_npu8_slots,
	},
	{ .etype = st_end },
};

#define NPU_BASE 0x5011000
#define NPU_SIZE 0x2c
#define NPU_INDIRECT0	0x8000000009010c3f
#define NPU_INDIRECT1	0x800000000c010c3f

static void create_link(struct dt_node *npu, int group, int index)
{
	struct dt_node *link;
	uint32_t lane_mask;
	uint64_t phy;
	char namebuf[32];

	snprintf(namebuf, sizeof(namebuf), "link@%x", index);
	link = dt_new(npu, namebuf);

	dt_add_property_string(link, "compatible", "ibm,npu-link");
	dt_add_property_cells(link, "ibm,npu-link-index", index);

	if (!(index / 3))
		phy = NPU_INDIRECT0;
	else
		phy = NPU_INDIRECT1;

	switch (index % 3) {
	case 0:
		lane_mask = 0xf1e000;
		break;

	case 1:
		lane_mask = 0x0e1870;
		break;

	case 2:
		lane_mask = 0x00078f;
		break;

	default:
		assert(0);
	}

	dt_add_property_u64s(link, "ibm,npu-phy", phy);
	dt_add_property_cells(link, "ibm,npu-lane-mask", lane_mask);
	dt_add_property_cells(link, "ibm,npu-group-id", group);
}

static void dt_create_npu2(void)
{
        struct dt_node *xscom, *npu;
        char namebuf[32];
	int phb_index = 7;
	int npu_index = 0;

	dt_for_each_compatible(dt_root, xscom, "ibm,xscom") {
		snprintf(namebuf, sizeof(namebuf), "npu@%x", NPU_BASE);
		npu = dt_new(xscom, namebuf);
		dt_add_property_cells(npu, "reg", NPU_BASE, NPU_SIZE);
		dt_add_property_strings(npu, "compatible", "ibm,power9-npu");

		dt_add_property_cells(npu, "ibm,phb-index", phb_index++);
		dt_add_property_cells(npu, "ibm,npu-index", npu_index++);
		dt_add_property_cells(npu, "ibm,npu-links", 6);

		create_link(npu, 0, 0);
		create_link(npu, 0, 1);
		create_link(npu, 1, 2);
		create_link(npu, 1, 3);
		create_link(npu, 2, 4);
		create_link(npu, 2, 5);
	}
}

#define PHB4_SHARED_SLOT_IDX_WITHERSPOON     3

static bool witherspoon_probe(void)
{
	if (!dt_node_is_compatible(dt_root, "ibm,witherspoon"))
		return false;

	/* Lot of common early inits here */
	astbmc_early_init();

	/* Setup UART for use by OPAL (Linux hvc) */
	uart_set_console_policy(UART_CONSOLE_OPAL);

	/* Add NPU2 bindings */
	dt_create_npu2();

	slot_table_init(witherspoon_phb_table);

	return true;
}

static void phb4_activate_shared_slot_witherspoon(struct proc_chip *chip)
{
	uint64_t val;

	/*
	 * Shared slot activation is done by raising a GPIO line on the
	 * chip with the secondary slot. It will somehow activate the
	 * sideband signals between the slots.
	 * Need to wait 100us for stability.
	 */
	xscom_read(chip->id, P9_GPIO_DATA_OUT_ENABLE, &val);
	val |= PPC_BIT(2);
	xscom_write(chip->id, P9_GPIO_DATA_OUT_ENABLE, val);

	xscom_read(chip->id, P9_GPIO_DATA_OUT, &val);
	val |= PPC_BIT(2);
	xscom_write(chip->id, P9_GPIO_DATA_OUT, val);
	time_wait_us(100);
	prlog(PR_INFO, "Shared PCI slot activated\n");
}

static void phb4_pre_pci_fixup_witherspoon(void)
{
	struct pci_slot *slot0, *slot1;
	struct proc_chip *chip0, *chip1;
	uint8_t p0 = 0, p1 = 0;

	/*
	 * Detect if a x16 card is present on the shared slot and
	 * do some extra configuration if it is.
	 *
	 * The shared slot, a.k.a "Slot 2" in the documentation, is
	 * connected to PEC2 phb index 3 on both chips. From skiboot,
	 * it looks like two x8 slots, each with its own presence bit.
	 *
	 * Here is the matrix of possibilities for the presence bits:
	 *
	 * slot0 presence     slot1 presence
	 *    0                  0               => no card
	 *    1                  0               => x8 or less card detected
	 *    1                  1               => x16 card detected
	 *    0                  1               => invalid combination
	 *
	 * We only act if a x16 card is detected ('1 1' combination above).
	 *
	 * One issue is that we don't really know if it is a
	 * shared-slot-compatible card (such as Mellanox CX5) or
	 * a 'normal' x16 PCI card. We activate the shared slot in both cases,
	 * as it doesn't seem to hurt.
	 *
	 * If the card is a normal x16 PCI card, the link won't train on the
	 * second slot (nothing to do with the shared slot activation), the
	 * procedure will timeout, thus adding some delay to the boot time.
	 * Therefore the recommendation is that we shouldn't use a normal
	 * x16 card on the shared slot of a witherspoon.
	 *
	 * Plugging a x8 or less adapter on the shared slot should work
	 * like any other physical slot.
	 */
	chip0 = next_chip(NULL);
	chip1 = next_chip(chip0);
	if (!chip1 || next_chip(chip1)) {
		prlog(PR_WARNING,
			"Unexpected number of chips, skipping shared slot detection\n");
		return;
	}
	slot0 = pci_slot_find(phb4_get_opal_id(chip0->id,
					PHB4_SHARED_SLOT_IDX_WITHERSPOON));
	slot1 = pci_slot_find(phb4_get_opal_id(chip1->id,
					PHB4_SHARED_SLOT_IDX_WITHERSPOON));
	if (slot0 && slot1) {
		if (slot0->ops.get_presence_state)
			slot0->ops.get_presence_state(slot0, &p0);
		if (slot1->ops.get_presence_state)
			slot1->ops.get_presence_state(slot1, &p1);
		if (p0 == 1 && p1 == 1)
			phb4_activate_shared_slot_witherspoon(chip1);
	}
}

static void witherspoon_pre_pci_fixup(void)
{
	phb4_pre_pci_fixup_witherspoon();
}

DECLARE_PLATFORM(witherspoon_platform) = {
	.name			= "Witherspoon",
	.probe			= witherspoon_probe,
	.init			= astbmc_init,
	.pre_pci_fixup		= witherspoon_pre_pci_fixup,
	.start_preload_resource	= flash_start_preload_resource,
	.resource_loaded	= flash_resource_loaded,
	.bmc			= &astbmc_openbmc,
	.pci_get_slot_info	= slot_table_get_slot_info,
	.pci_probe_complete	= check_all_slot_table,
	.cec_power_down         = astbmc_ipmi_power_down,
	.cec_reboot             = astbmc_ipmi_reboot,
	.elog_commit		= ipmi_elog_commit,
	.exit			= ipmi_wdt_final_reset,
	.terminate		= ipmi_terminate,
};