16859 October 2024 hwdata update
[illumos-gate.git] / usr / src / uts / sun4u / schumacher / os / schumacher.c
blobabc5dec3c7523b7ef0ef5c960737d1e47b4f50db
1 /*
2 * CDDL HEADER START
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
19 * CDDL HEADER END
22 * Copyright 2007 Sun Microsystems, Inc. All rights reserved.
23 * Use is subject to license terms.
26 #pragma ident "%Z%%M% %I% %E% SMI"
28 #include <sys/param.h>
29 #include <sys/systm.h>
30 #include <sys/sysmacros.h>
31 #include <sys/sunddi.h>
32 #include <sys/esunddi.h>
33 #include <sys/platform_module.h>
34 #include <sys/errno.h>
35 #include <sys/lgrp.h>
36 #include <sys/memnode.h>
37 #include <sys/promif.h>
39 int (*p2get_mem_unum)(int, uint64_t, char *, int, int *);
41 void
42 startup_platform(void)
46 int
47 set_platform_tsb_spares()
49 return (0);
52 void
53 set_platform_defaults(void)
58 * Definitions for accessing the pci config space of the isa node
59 * of Southbridge.
61 #define SCHUMACHER_ISA_PATHNAME "/pci@1e,600000/isa@7"
62 static ddi_acc_handle_t isa_handle; /* handle for isa pci space */
65 void
66 load_platform_drivers(void)
68 dev_info_t *dip; /* dip of the isa driver */
71 * Install 'us' driver.
73 (void) i_ddi_attach_hw_nodes("us");
76 * mc-us3i must stay loaded for plat_get_mem_unum()
78 if (i_ddi_attach_hw_nodes("mc-us3i") != DDI_SUCCESS)
79 cmn_err(CE_WARN, "mc-us3i driver failed to install");
80 (void) ddi_hold_driver(ddi_name_to_major("mc-us3i"));
83 * Install Isa driver. This is required for the southbridge IDE
84 * workaround - to reset the IDE channel during IDE bus reset.
85 * Panic the system in case ISA driver could not be loaded or
86 * any problem in accessing its pci config space. Since the register
87 * to reset the channel for IDE is in ISA config space!.
90 dip = e_ddi_hold_devi_by_path(SCHUMACHER_ISA_PATHNAME, 0);
91 if (dip == NULL) {
92 cmn_err(CE_PANIC, "Could not install the isa driver\n");
93 return;
96 if (pci_config_setup(dip, &isa_handle) != DDI_SUCCESS) {
97 cmn_err(CE_PANIC, "Could not get the config space of isa\n");
98 return;
103 * This routine provides a workaround for a bug in the SB chip which
104 * can cause data corruption. Will be invoked from the IDE HBA driver for
105 * Acer SouthBridge at the time of IDE bus reset.
107 /*ARGSUSED*/
109 plat_ide_chipreset(dev_info_t *dip, int chno)
111 uint8_t val;
112 int ret = DDI_SUCCESS;
114 if (isa_handle == NULL) {
115 return (DDI_FAILURE);
118 val = pci_config_get8(isa_handle, 0x58);
120 * The dip passed as the argument is not used here.
121 * This will be needed for platforms which have multiple on-board SB,
122 * The dip passed will be used to match the corresponding ISA node.
124 switch (chno) {
125 case 0:
127 * First disable the primary channel then re-enable it.
128 * As per ALI no wait should be required in between have
129 * given 1ms delay in between to be on safer side.
130 * bit 2 of register 0x58 when 0 disable the channel 0.
131 * bit 2 of register 0x58 when 1 enables the channel 0.
133 pci_config_put8(isa_handle, 0x58, val & 0xFB);
134 drv_usecwait(1000);
135 pci_config_put8(isa_handle, 0x58, val);
136 break;
137 case 1:
139 * bit 3 of register 0x58 when 0 disable the channel 1.
140 * bit 3 of register 0x58 when 1 enables the channel 1.
142 pci_config_put8(isa_handle, 0x58, val & 0xF7);
143 drv_usecwait(1000);
144 pci_config_put8(isa_handle, 0x58, val);
145 break;
146 default:
148 * Unknown channel number passed. Return failure.
150 ret = DDI_FAILURE;
153 return (ret);
157 /*ARGSUSED*/
159 plat_cpu_poweron(struct cpu *cp)
161 return (ENOTSUP); /* not supported on this platform */
164 /*ARGSUSED*/
166 plat_cpu_poweroff(struct cpu *cp)
168 return (ENOTSUP); /* not supported on this platform */
171 /*ARGSUSED*/
172 void
173 plat_freelist_process(int mnode)
177 char *platform_module_list[] = {
178 (char *)0
181 /*ARGSUSED*/
182 void
183 plat_tod_fault(enum tod_fault_type tod_bad)
187 /*ARGSUSED*/
189 plat_get_mem_unum(int synd_code, uint64_t flt_addr, int flt_bus_id,
190 int flt_in_memory, ushort_t flt_status, char *buf, int buflen, int *lenp)
192 if (flt_in_memory && (p2get_mem_unum != NULL))
193 return (p2get_mem_unum(synd_code, P2ALIGN(flt_addr, 8),
194 buf, buflen, lenp));
195 else
196 return (ENOTSUP);
199 /*ARGSUSED*/
201 plat_get_cpu_unum(int cpuid, char *buf, int buflen, int *lenp)
203 if (snprintf(buf, buflen, "MB") >= buflen) {
204 return (ENOSPC);
205 } else {
206 *lenp = strlen(buf);
207 return (0);
212 * Fiesta support for lgroups.
214 * On fiesta platform, an lgroup platform handle == CPU id
218 * Macro for extracting the CPU number from the CPU id
220 #define CPUID_TO_LGRP(id) ((id) & 0x7)
221 #define SCHUMACHER_MC_SHIFT 36
224 * Return the platform handle for the lgroup containing the given CPU
226 lgrp_handle_t
227 plat_lgrp_cpu_to_hand(processorid_t id)
229 return (CPUID_TO_LGRP(id));
233 * Platform specific lgroup initialization
235 void
236 plat_lgrp_init(void)
238 pnode_t curnode;
239 char tmp_name[MAXSYSNAME];
240 int portid;
241 int cpucnt = 0;
242 int max_portid = -1;
243 extern uint32_t lgrp_expand_proc_thresh;
244 extern uint32_t lgrp_expand_proc_diff;
245 extern pgcnt_t lgrp_mem_free_thresh;
246 extern uint32_t lgrp_loadavg_tolerance;
247 extern uint32_t lgrp_loadavg_max_effect;
248 extern uint32_t lgrp_load_thresh;
249 extern lgrp_mem_policy_t lgrp_mem_policy_root;
252 * Count the number of CPUs installed to determine if
253 * NUMA optimization should be enabled or not.
255 * All CPU nodes reside in the root node and have a
256 * device type "cpu".
258 curnode = prom_rootnode();
259 for (curnode = prom_childnode(curnode); curnode;
260 curnode = prom_nextnode(curnode)) {
261 bzero(tmp_name, MAXSYSNAME);
262 if (prom_getprop(curnode, OBP_NAME, (caddr_t)tmp_name) == -1 ||
263 prom_getprop(curnode, OBP_DEVICETYPE, tmp_name) == -1 ||
264 strcmp(tmp_name, "cpu") != 0)
265 continue;
267 cpucnt++;
268 if (prom_getprop(curnode, "portid", (caddr_t)&portid) != -1 &&
269 portid > max_portid)
270 max_portid = portid;
272 if (cpucnt <= 1)
273 max_mem_nodes = 1;
274 else if (max_portid >= 0 && max_portid < MAX_MEM_NODES)
275 max_mem_nodes = max_portid + 1;
278 * Set tuneables for fiesta architecture
280 * lgrp_expand_proc_thresh is the minimum load on the lgroups
281 * this process is currently running on before considering
282 * expanding threads to another lgroup.
284 * lgrp_expand_proc_diff determines how much less the remote lgroup
285 * must be loaded before expanding to it.
287 * Optimize for memory bandwidth by spreading multi-threaded
288 * program to different lgroups.
290 lgrp_expand_proc_thresh = lgrp_loadavg_max_effect - 1;
291 lgrp_expand_proc_diff = lgrp_loadavg_max_effect / 2;
292 lgrp_loadavg_tolerance = lgrp_loadavg_max_effect / 2;
293 lgrp_mem_free_thresh = 1; /* home lgrp must have some memory */
294 lgrp_expand_proc_thresh = lgrp_loadavg_max_effect - 1;
295 lgrp_mem_policy_root = LGRP_MEM_POLICY_NEXT;
296 lgrp_load_thresh = 0;
298 mem_node_pfn_shift = SCHUMACHER_MC_SHIFT - MMU_PAGESHIFT;
302 * Return latency between "from" and "to" lgroups
304 * This latency number can only be used for relative comparison
305 * between lgroups on the running system, cannot be used across platforms,
306 * and may not reflect the actual latency. It is platform and implementation
307 * specific, so platform gets to decide its value. It would be nice if the
308 * number was at least proportional to make comparisons more meaningful though.
309 * NOTE: The numbers below are supposed to be load latencies for uncached
310 * memory divided by 10.
313 plat_lgrp_latency(lgrp_handle_t from, lgrp_handle_t to)
316 * Return remote latency when there are more than two lgroups
317 * (root and child) and getting latency between two different
318 * lgroups or root is involved
320 if (lgrp_optimizations() && (from != to ||
321 from == LGRP_DEFAULT_HANDLE || to == LGRP_DEFAULT_HANDLE))
322 return (17);
323 else
324 return (12);
328 plat_pfn_to_mem_node(pfn_t pfn)
330 ASSERT(max_mem_nodes > 1);
331 return (pfn >> mem_node_pfn_shift);
335 * Assign memnode to lgroups
337 void
338 plat_fill_mc(pnode_t nodeid)
340 int portid;
343 * Schumacher memory controller portid == global CPU id
345 if ((prom_getprop(nodeid, "portid", (caddr_t)&portid) == -1) ||
346 (portid < 0))
347 return;
349 if (portid < max_mem_nodes)
350 plat_assign_lgrphand_to_mem_node(portid, portid);