xref: /titanic_52/usr/src/uts/sun4u/blade/os/blade.c (revision 7c478bd95313f5f23a4c958a745db2134aa03244)
1*7c478bd9Sstevel@tonic-gate /*
2*7c478bd9Sstevel@tonic-gate  * CDDL HEADER START
3*7c478bd9Sstevel@tonic-gate  *
4*7c478bd9Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
5*7c478bd9Sstevel@tonic-gate  * Common Development and Distribution License, Version 1.0 only
6*7c478bd9Sstevel@tonic-gate  * (the "License").  You may not use this file except in compliance
7*7c478bd9Sstevel@tonic-gate  * with the License.
8*7c478bd9Sstevel@tonic-gate  *
9*7c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10*7c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
11*7c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
12*7c478bd9Sstevel@tonic-gate  * and limitations under the License.
13*7c478bd9Sstevel@tonic-gate  *
14*7c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
15*7c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16*7c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
17*7c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
18*7c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
19*7c478bd9Sstevel@tonic-gate  *
20*7c478bd9Sstevel@tonic-gate  * CDDL HEADER END
21*7c478bd9Sstevel@tonic-gate  */
22*7c478bd9Sstevel@tonic-gate /*
23*7c478bd9Sstevel@tonic-gate  * Copyright 2002 Sun Microsystems, Inc.  All rights reserved.
24*7c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
25*7c478bd9Sstevel@tonic-gate  */
26*7c478bd9Sstevel@tonic-gate 
27*7c478bd9Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
28*7c478bd9Sstevel@tonic-gate 
29*7c478bd9Sstevel@tonic-gate #include <sys/param.h>
30*7c478bd9Sstevel@tonic-gate #include <sys/systm.h>
31*7c478bd9Sstevel@tonic-gate #include <sys/sunddi.h>
32*7c478bd9Sstevel@tonic-gate #include <sys/esunddi.h>
33*7c478bd9Sstevel@tonic-gate #include <sys/ddi.h>
34*7c478bd9Sstevel@tonic-gate 
35*7c478bd9Sstevel@tonic-gate #include <sys/platform_module.h>
36*7c478bd9Sstevel@tonic-gate #include <sys/modctl.h>
37*7c478bd9Sstevel@tonic-gate #include <sys/lom_priv.h>
38*7c478bd9Sstevel@tonic-gate #include <sys/errno.h>
39*7c478bd9Sstevel@tonic-gate #include <sys/utsname.h>
40*7c478bd9Sstevel@tonic-gate 
41*7c478bd9Sstevel@tonic-gate #define	TOD_DRIVER_NAME	"todblade"
42*7c478bd9Sstevel@tonic-gate #define	BSC_DRV		SUNW_KERN_BSCV_MODULENAME
43*7c478bd9Sstevel@tonic-gate #define	BSC_DRV_FUNC	SUNW_KERN_BSCV_IDI_FN
44*7c478bd9Sstevel@tonic-gate 
45*7c478bd9Sstevel@tonic-gate 
46*7c478bd9Sstevel@tonic-gate /* local functions */
47*7c478bd9Sstevel@tonic-gate static void cpu_sgn_update(ushort_t, uchar_t, uchar_t, int);
48*7c478bd9Sstevel@tonic-gate 
49*7c478bd9Sstevel@tonic-gate /* Globals */
50*7c478bd9Sstevel@tonic-gate void (*bsc_drv_func_ptr)(struct bscv_idi_info *) = NULL;
51*7c478bd9Sstevel@tonic-gate 
52*7c478bd9Sstevel@tonic-gate 
53*7c478bd9Sstevel@tonic-gate void
54*7c478bd9Sstevel@tonic-gate startup_platform(void)
55*7c478bd9Sstevel@tonic-gate {
56*7c478bd9Sstevel@tonic-gate 	extern char	*tod_module_name;
57*7c478bd9Sstevel@tonic-gate 	extern int	watchdog_available;
58*7c478bd9Sstevel@tonic-gate 	extern int	watchdog_enable;
59*7c478bd9Sstevel@tonic-gate 	extern int	disable_watchdog_on_exit;
60*7c478bd9Sstevel@tonic-gate 
61*7c478bd9Sstevel@tonic-gate 	/* Set appropriate tod module for blade */
62*7c478bd9Sstevel@tonic-gate 	tod_module_name = TOD_DRIVER_NAME;
63*7c478bd9Sstevel@tonic-gate 
64*7c478bd9Sstevel@tonic-gate 	/* Set watchdog default configuration */
65*7c478bd9Sstevel@tonic-gate 	watchdog_available = 1;
66*7c478bd9Sstevel@tonic-gate 	watchdog_enable = 1;
67*7c478bd9Sstevel@tonic-gate 	disable_watchdog_on_exit = 1;
68*7c478bd9Sstevel@tonic-gate }
69*7c478bd9Sstevel@tonic-gate 
70*7c478bd9Sstevel@tonic-gate int
71*7c478bd9Sstevel@tonic-gate set_platform_tsb_spares()
72*7c478bd9Sstevel@tonic-gate {
73*7c478bd9Sstevel@tonic-gate 	return (0);
74*7c478bd9Sstevel@tonic-gate }
75*7c478bd9Sstevel@tonic-gate 
76*7c478bd9Sstevel@tonic-gate void
77*7c478bd9Sstevel@tonic-gate set_platform_defaults(void)
78*7c478bd9Sstevel@tonic-gate {
79*7c478bd9Sstevel@tonic-gate 	/* Set the CPU signature function pointer */
80*7c478bd9Sstevel@tonic-gate 	cpu_sgn_func = cpu_sgn_update;
81*7c478bd9Sstevel@tonic-gate }
82*7c478bd9Sstevel@tonic-gate 
83*7c478bd9Sstevel@tonic-gate /*
84*7c478bd9Sstevel@tonic-gate  * Definitions for accessing the pci config space of the isa node
85*7c478bd9Sstevel@tonic-gate  * of Southbridge.
86*7c478bd9Sstevel@tonic-gate  */
87*7c478bd9Sstevel@tonic-gate #define	PLATFORM_ISA_PATHNAME	"/pci@1f,0/isa@7"
88*7c478bd9Sstevel@tonic-gate #define	PLATFORM_ISA_PATHNAME_WITH_SIMBA	"/pci@1f,0/pci@1,1/isa@7"
89*7c478bd9Sstevel@tonic-gate static ddi_acc_handle_t platform_isa_handle;	/* handle for isa pci space */
90*7c478bd9Sstevel@tonic-gate 
91*7c478bd9Sstevel@tonic-gate void
92*7c478bd9Sstevel@tonic-gate load_platform_drivers(void)
93*7c478bd9Sstevel@tonic-gate {
94*7c478bd9Sstevel@tonic-gate 	extern int		watchdog_available;
95*7c478bd9Sstevel@tonic-gate 	extern int		watchdog_enable;
96*7c478bd9Sstevel@tonic-gate 	dev_info_t 		*dip;		/* dip of the isa driver */
97*7c478bd9Sstevel@tonic-gate 	int			simba_present = 0;
98*7c478bd9Sstevel@tonic-gate 	dev_info_t		*root_child_node;
99*7c478bd9Sstevel@tonic-gate 	major_t	major;
100*7c478bd9Sstevel@tonic-gate 
101*7c478bd9Sstevel@tonic-gate 	if (ddi_install_driver("power") != DDI_SUCCESS)
102*7c478bd9Sstevel@tonic-gate 		cmn_err(CE_WARN, "Failed to install \"power\" driver.");
103*7c478bd9Sstevel@tonic-gate 
104*7c478bd9Sstevel@tonic-gate 	/*
105*7c478bd9Sstevel@tonic-gate 	 * Install Isa driver. This is required for the southbridge IDE
106*7c478bd9Sstevel@tonic-gate 	 * workaround - to reset the IDE channel during IDE bus reset.
107*7c478bd9Sstevel@tonic-gate 	 * Panic the system in case ISA driver could not be loaded or
108*7c478bd9Sstevel@tonic-gate 	 * any problem in accessing its pci config space. Since the register
109*7c478bd9Sstevel@tonic-gate 	 * to reset the channel for IDE is in ISA config space!.
110*7c478bd9Sstevel@tonic-gate 	 */
111*7c478bd9Sstevel@tonic-gate 	root_child_node = ddi_get_child(ddi_root_node());
112*7c478bd9Sstevel@tonic-gate 
113*7c478bd9Sstevel@tonic-gate 	while (root_child_node != NULL) {
114*7c478bd9Sstevel@tonic-gate 		if (strcmp(ddi_node_name(root_child_node), "pci") == 0) {
115*7c478bd9Sstevel@tonic-gate 			root_child_node = ddi_get_child(root_child_node);
116*7c478bd9Sstevel@tonic-gate 			if (strcmp(ddi_node_name(root_child_node), "pci") == 0)
117*7c478bd9Sstevel@tonic-gate 				simba_present = 1;
118*7c478bd9Sstevel@tonic-gate 			break;
119*7c478bd9Sstevel@tonic-gate 		}
120*7c478bd9Sstevel@tonic-gate 		root_child_node = ddi_get_next_sibling(root_child_node);
121*7c478bd9Sstevel@tonic-gate 	}
122*7c478bd9Sstevel@tonic-gate 
123*7c478bd9Sstevel@tonic-gate 	if (simba_present)
124*7c478bd9Sstevel@tonic-gate 		dip = e_ddi_hold_devi_by_path(PLATFORM_ISA_PATHNAME_WITH_SIMBA,
125*7c478bd9Sstevel@tonic-gate 		    0);
126*7c478bd9Sstevel@tonic-gate 	else
127*7c478bd9Sstevel@tonic-gate 		dip = e_ddi_hold_devi_by_path(PLATFORM_ISA_PATHNAME, 0);
128*7c478bd9Sstevel@tonic-gate 
129*7c478bd9Sstevel@tonic-gate 	if (dip == NULL) {
130*7c478bd9Sstevel@tonic-gate 		cmn_err(CE_PANIC, "Could not install the isa driver\n");
131*7c478bd9Sstevel@tonic-gate 		return;
132*7c478bd9Sstevel@tonic-gate 	}
133*7c478bd9Sstevel@tonic-gate 
134*7c478bd9Sstevel@tonic-gate 	if (pci_config_setup(dip, &platform_isa_handle) != DDI_SUCCESS) {
135*7c478bd9Sstevel@tonic-gate 		cmn_err(CE_PANIC, "Could not get the config space of isa\n");
136*7c478bd9Sstevel@tonic-gate 		return;
137*7c478bd9Sstevel@tonic-gate 	}
138*7c478bd9Sstevel@tonic-gate 
139*7c478bd9Sstevel@tonic-gate 	/*
140*7c478bd9Sstevel@tonic-gate 	 * Load the blade support chip driver.
141*7c478bd9Sstevel@tonic-gate 	 *
142*7c478bd9Sstevel@tonic-gate 	 */
143*7c478bd9Sstevel@tonic-gate 
144*7c478bd9Sstevel@tonic-gate 	if (((major = ddi_name_to_major(BSC_DRV)) == -1) ||
145*7c478bd9Sstevel@tonic-gate 		(ddi_hold_installed_driver(major) == NULL)) {
146*7c478bd9Sstevel@tonic-gate 		cmn_err(CE_WARN, "%s: failed to load", BSC_DRV);
147*7c478bd9Sstevel@tonic-gate 	} else {
148*7c478bd9Sstevel@tonic-gate 
149*7c478bd9Sstevel@tonic-gate 		bsc_drv_func_ptr = (void (*)(struct bscv_idi_info *))
150*7c478bd9Sstevel@tonic-gate 		    modgetsymvalue(BSC_DRV_FUNC, 0);
151*7c478bd9Sstevel@tonic-gate 
152*7c478bd9Sstevel@tonic-gate 		if (bsc_drv_func_ptr == NULL) {
153*7c478bd9Sstevel@tonic-gate 			cmn_err(CE_WARN, "load_platform_defaults: %s()"
154*7c478bd9Sstevel@tonic-gate 			" not found; signatures will not be updated\n",
155*7c478bd9Sstevel@tonic-gate 			BSC_DRV_FUNC);
156*7c478bd9Sstevel@tonic-gate 			watchdog_available = 0;
157*7c478bd9Sstevel@tonic-gate 			if (watchdog_enable) {
158*7c478bd9Sstevel@tonic-gate 				cmn_err(CE_WARN, "load_platform_defaults: %s()"
159*7c478bd9Sstevel@tonic-gate 			" not found; BSC OS watchdog service not available\n",
160*7c478bd9Sstevel@tonic-gate 				BSC_DRV_FUNC);
161*7c478bd9Sstevel@tonic-gate 			}
162*7c478bd9Sstevel@tonic-gate 		}
163*7c478bd9Sstevel@tonic-gate 	}
164*7c478bd9Sstevel@tonic-gate }
165*7c478bd9Sstevel@tonic-gate 
166*7c478bd9Sstevel@tonic-gate /*
167*7c478bd9Sstevel@tonic-gate  * This routine provides a workaround for a bug in the SB chip which
168*7c478bd9Sstevel@tonic-gate  * can cause data corruption. Will be invoked from the IDE HBA driver for
169*7c478bd9Sstevel@tonic-gate  * Acer SouthBridge at the time of IDE bus reset.
170*7c478bd9Sstevel@tonic-gate  */
171*7c478bd9Sstevel@tonic-gate /*ARGSUSED*/
172*7c478bd9Sstevel@tonic-gate int
173*7c478bd9Sstevel@tonic-gate plat_ide_chipreset(dev_info_t *dip, int chno)
174*7c478bd9Sstevel@tonic-gate {
175*7c478bd9Sstevel@tonic-gate 	uint8_t	val;
176*7c478bd9Sstevel@tonic-gate 	int	ret = DDI_SUCCESS;
177*7c478bd9Sstevel@tonic-gate 
178*7c478bd9Sstevel@tonic-gate 	if (platform_isa_handle == NULL)
179*7c478bd9Sstevel@tonic-gate 		return (DDI_FAILURE);
180*7c478bd9Sstevel@tonic-gate 
181*7c478bd9Sstevel@tonic-gate 	val = pci_config_get8(platform_isa_handle, 0x58);
182*7c478bd9Sstevel@tonic-gate 	/*
183*7c478bd9Sstevel@tonic-gate 	 * The dip passed as the argument is not used for platform.
184*7c478bd9Sstevel@tonic-gate 	 * This will be needed for platforms which have multiple on-board SB,
185*7c478bd9Sstevel@tonic-gate 	 * The dip passed will be used to match the corresponding ISA node.
186*7c478bd9Sstevel@tonic-gate 	 */
187*7c478bd9Sstevel@tonic-gate 	switch (chno) {
188*7c478bd9Sstevel@tonic-gate 		case 0:
189*7c478bd9Sstevel@tonic-gate 			/*
190*7c478bd9Sstevel@tonic-gate 			 * First disable the primary channel then re-enable it.
191*7c478bd9Sstevel@tonic-gate 			 * As per ALI no wait should be required in between have
192*7c478bd9Sstevel@tonic-gate 			 * given 1ms delay in between to be on safer side.
193*7c478bd9Sstevel@tonic-gate 			 * bit 2 of register 0x58 when 0 disable the channel 0.
194*7c478bd9Sstevel@tonic-gate 			 * bit 2 of register 0x58 when 1 enables the channel 0.
195*7c478bd9Sstevel@tonic-gate 			 */
196*7c478bd9Sstevel@tonic-gate 			pci_config_put8(platform_isa_handle, 0x58, val & 0xFB);
197*7c478bd9Sstevel@tonic-gate 			drv_usecwait(1000);
198*7c478bd9Sstevel@tonic-gate 			pci_config_put8(platform_isa_handle, 0x58, val);
199*7c478bd9Sstevel@tonic-gate 			break;
200*7c478bd9Sstevel@tonic-gate 		case 1:
201*7c478bd9Sstevel@tonic-gate 			/*
202*7c478bd9Sstevel@tonic-gate 			 * bit 3 of register 0x58 when 0 disable the channel 1.
203*7c478bd9Sstevel@tonic-gate 			 * bit 3 of register 0x58 when 1 enables the channel 1.
204*7c478bd9Sstevel@tonic-gate 			 */
205*7c478bd9Sstevel@tonic-gate 			pci_config_put8(platform_isa_handle, 0x58, val & 0xF7);
206*7c478bd9Sstevel@tonic-gate 			drv_usecwait(1000);
207*7c478bd9Sstevel@tonic-gate 			pci_config_put8(platform_isa_handle, 0x58, val);
208*7c478bd9Sstevel@tonic-gate 			break;
209*7c478bd9Sstevel@tonic-gate 		default:
210*7c478bd9Sstevel@tonic-gate 			/*
211*7c478bd9Sstevel@tonic-gate 			 * Unknown channel number passed. Return failure.
212*7c478bd9Sstevel@tonic-gate 			 */
213*7c478bd9Sstevel@tonic-gate 			ret = DDI_FAILURE;
214*7c478bd9Sstevel@tonic-gate 	}
215*7c478bd9Sstevel@tonic-gate 
216*7c478bd9Sstevel@tonic-gate 	return (ret);
217*7c478bd9Sstevel@tonic-gate }
218*7c478bd9Sstevel@tonic-gate 
219*7c478bd9Sstevel@tonic-gate 
220*7c478bd9Sstevel@tonic-gate 
221*7c478bd9Sstevel@tonic-gate /*ARGSUSED*/
222*7c478bd9Sstevel@tonic-gate int
223*7c478bd9Sstevel@tonic-gate plat_cpu_poweron(struct cpu *cp)
224*7c478bd9Sstevel@tonic-gate {
225*7c478bd9Sstevel@tonic-gate 	return (ENOTSUP);	/* not supported on this platform */
226*7c478bd9Sstevel@tonic-gate }
227*7c478bd9Sstevel@tonic-gate 
228*7c478bd9Sstevel@tonic-gate /*ARGSUSED*/
229*7c478bd9Sstevel@tonic-gate int
230*7c478bd9Sstevel@tonic-gate plat_cpu_poweroff(struct cpu *cp)
231*7c478bd9Sstevel@tonic-gate {
232*7c478bd9Sstevel@tonic-gate 	return (ENOTSUP);	/* not supported on this platform */
233*7c478bd9Sstevel@tonic-gate }
234*7c478bd9Sstevel@tonic-gate 
235*7c478bd9Sstevel@tonic-gate /*ARGSUSED*/
236*7c478bd9Sstevel@tonic-gate void
237*7c478bd9Sstevel@tonic-gate plat_freelist_process(int mnode)
238*7c478bd9Sstevel@tonic-gate {
239*7c478bd9Sstevel@tonic-gate }
240*7c478bd9Sstevel@tonic-gate 
241*7c478bd9Sstevel@tonic-gate char *platform_module_list[] = {
242*7c478bd9Sstevel@tonic-gate 	(char *)0
243*7c478bd9Sstevel@tonic-gate };
244*7c478bd9Sstevel@tonic-gate 
245*7c478bd9Sstevel@tonic-gate /*ARGSUSED*/
246*7c478bd9Sstevel@tonic-gate void
247*7c478bd9Sstevel@tonic-gate plat_tod_fault(enum tod_fault_type tod_bad)
248*7c478bd9Sstevel@tonic-gate {
249*7c478bd9Sstevel@tonic-gate }
250*7c478bd9Sstevel@tonic-gate 
251*7c478bd9Sstevel@tonic-gate /*
252*7c478bd9Sstevel@tonic-gate  * Our nodename has been set, pass it along to the BSC.
253*7c478bd9Sstevel@tonic-gate  */
254*7c478bd9Sstevel@tonic-gate void
255*7c478bd9Sstevel@tonic-gate plat_nodename_set(void)
256*7c478bd9Sstevel@tonic-gate {
257*7c478bd9Sstevel@tonic-gate 	struct bscv_idi_info bscv_info;
258*7c478bd9Sstevel@tonic-gate 
259*7c478bd9Sstevel@tonic-gate 	bscv_info.type = BSCV_IDI_NODENAME;
260*7c478bd9Sstevel@tonic-gate 	bscv_info.data = utsname.nodename;
261*7c478bd9Sstevel@tonic-gate 	bscv_info.size = strlen(utsname.nodename);
262*7c478bd9Sstevel@tonic-gate 
263*7c478bd9Sstevel@tonic-gate 	if (bsc_drv_func_ptr != NULL)
264*7c478bd9Sstevel@tonic-gate 		(bsc_drv_func_ptr)(&bscv_info);
265*7c478bd9Sstevel@tonic-gate }
266*7c478bd9Sstevel@tonic-gate 
267*7c478bd9Sstevel@tonic-gate /*
268*7c478bd9Sstevel@tonic-gate  * Send an updated CPU signature to the BSC.
269*7c478bd9Sstevel@tonic-gate  */
270*7c478bd9Sstevel@tonic-gate 
271*7c478bd9Sstevel@tonic-gate static void
272*7c478bd9Sstevel@tonic-gate cpu_sgn_update(ushort_t sig, uchar_t state, uchar_t sub_state, int cpuid)
273*7c478bd9Sstevel@tonic-gate {
274*7c478bd9Sstevel@tonic-gate 	struct bscv_idi_info bscv_info;
275*7c478bd9Sstevel@tonic-gate 	bscv_sig_t sc;
276*7c478bd9Sstevel@tonic-gate 
277*7c478bd9Sstevel@tonic-gate 	sc.sig_info.signature = CPU_SIG_BLD(sig, state, sub_state);
278*7c478bd9Sstevel@tonic-gate 	sc.cpu = cpuid;
279*7c478bd9Sstevel@tonic-gate 
280*7c478bd9Sstevel@tonic-gate 	bscv_info.type = BSCV_IDI_SIG;
281*7c478bd9Sstevel@tonic-gate 	bscv_info.data = &sc;
282*7c478bd9Sstevel@tonic-gate 	bscv_info.size = sizeof (sc);
283*7c478bd9Sstevel@tonic-gate 
284*7c478bd9Sstevel@tonic-gate 
285*7c478bd9Sstevel@tonic-gate 	if (bsc_drv_func_ptr != NULL)
286*7c478bd9Sstevel@tonic-gate 		(*bsc_drv_func_ptr)(&bscv_info);
287*7c478bd9Sstevel@tonic-gate }
288