[IA64-SGI] Add new vendor-specific SAL calls for:
[sfrench/cifs-2.6.git] / arch / ia64 / sn / kernel / setup.c
1 /*
2  * This file is subject to the terms and conditions of the GNU General Public
3  * License.  See the file "COPYING" in the main directory of this archive
4  * for more details.
5  *
6  * Copyright (C) 1999,2001-2005 Silicon Graphics, Inc. All rights reserved.
7  */
8
9 #include <linux/config.h>
10 #include <linux/module.h>
11 #include <linux/init.h>
12 #include <linux/delay.h>
13 #include <linux/kernel.h>
14 #include <linux/kdev_t.h>
15 #include <linux/string.h>
16 #include <linux/tty.h>
17 #include <linux/console.h>
18 #include <linux/timex.h>
19 #include <linux/sched.h>
20 #include <linux/ioport.h>
21 #include <linux/mm.h>
22 #include <linux/serial.h>
23 #include <linux/irq.h>
24 #include <linux/bootmem.h>
25 #include <linux/mmzone.h>
26 #include <linux/interrupt.h>
27 #include <linux/acpi.h>
28 #include <linux/compiler.h>
29 #include <linux/sched.h>
30 #include <linux/root_dev.h>
31 #include <linux/nodemask.h>
32 #include <linux/pm.h>
33
34 #include <asm/io.h>
35 #include <asm/sal.h>
36 #include <asm/machvec.h>
37 #include <asm/system.h>
38 #include <asm/processor.h>
39 #include <asm/vga.h>
40 #include <asm/sn/arch.h>
41 #include <asm/sn/addrs.h>
42 #include <asm/sn/pda.h>
43 #include <asm/sn/nodepda.h>
44 #include <asm/sn/sn_cpuid.h>
45 #include <asm/sn/simulator.h>
46 #include <asm/sn/leds.h>
47 #include <asm/sn/bte.h>
48 #include <asm/sn/shub_mmr.h>
49 #include <asm/sn/clksupport.h>
50 #include <asm/sn/sn_sal.h>
51 #include <asm/sn/geo.h>
52 #include <asm/sn/sn_feature_sets.h>
53 #include "xtalk/xwidgetdev.h"
54 #include "xtalk/hubdev.h"
55 #include <asm/sn/klconfig.h>
56
57
58 DEFINE_PER_CPU(struct pda_s, pda_percpu);
59
60 #define MAX_PHYS_MEMORY         (1UL << 49)     /* 1 TB */
61
62 lboard_t *root_lboard[MAX_COMPACT_NODES];
63
64 extern void bte_init_node(nodepda_t *, cnodeid_t);
65
66 extern void sn_timer_init(void);
67 extern unsigned long last_time_offset;
68 extern void (*ia64_mark_idle) (int);
69 extern void snidle(int);
70 extern unsigned char acpi_kbd_controller_present;
71
72 unsigned long sn_rtc_cycles_per_second;
73 EXPORT_SYMBOL(sn_rtc_cycles_per_second);
74
75 DEFINE_PER_CPU(struct sn_hub_info_s, __sn_hub_info);
76 EXPORT_PER_CPU_SYMBOL(__sn_hub_info);
77
78 DEFINE_PER_CPU(short, __sn_cnodeid_to_nasid[MAX_NUMNODES]);
79 EXPORT_PER_CPU_SYMBOL(__sn_cnodeid_to_nasid);
80
81 DEFINE_PER_CPU(struct nodepda_s *, __sn_nodepda);
82 EXPORT_PER_CPU_SYMBOL(__sn_nodepda);
83
84 partid_t sn_partid = -1;
85 EXPORT_SYMBOL(sn_partid);
86 char sn_system_serial_number_string[128];
87 EXPORT_SYMBOL(sn_system_serial_number_string);
88 u64 sn_partition_serial_number;
89 EXPORT_SYMBOL(sn_partition_serial_number);
90 u8 sn_partition_id;
91 EXPORT_SYMBOL(sn_partition_id);
92 u8 sn_system_size;
93 EXPORT_SYMBOL(sn_system_size);
94 u8 sn_sharing_domain_size;
95 EXPORT_SYMBOL(sn_sharing_domain_size);
96 u8 sn_coherency_id;
97 EXPORT_SYMBOL(sn_coherency_id);
98 u8 sn_region_size;
99 EXPORT_SYMBOL(sn_region_size);
100 int sn_prom_type;       /* 0=hardware, 1=medusa/realprom, 2=medusa/fakeprom */
101
102 short physical_node_map[MAX_PHYSNODE_ID];
103 static unsigned long sn_prom_features[MAX_PROM_FEATURE_SETS];
104
105 EXPORT_SYMBOL(physical_node_map);
106
107 int numionodes;
108
109 static void sn_init_pdas(char **);
110 static void scan_for_ionodes(void);
111
112 static nodepda_t *nodepdaindr[MAX_COMPACT_NODES];
113
114 /*
115  * The format of "screen_info" is strange, and due to early i386-setup
116  * code. This is just enough to make the console code think we're on a
117  * VGA color display.
118  */
119 struct screen_info sn_screen_info = {
120         .orig_x = 0,
121         .orig_y = 0,
122         .orig_video_mode = 3,
123         .orig_video_cols = 80,
124         .orig_video_ega_bx = 3,
125         .orig_video_lines = 25,
126         .orig_video_isVGA = 1,
127         .orig_video_points = 16
128 };
129
130 /*
131  * This is here so we can use the CMOS detection in ide-probe.c to
132  * determine what drives are present.  In theory, we don't need this
133  * as the auto-detection could be done via ide-probe.c:do_probe() but
134  * in practice that would be much slower, which is painful when
135  * running in the simulator.  Note that passing zeroes in DRIVE_INFO
136  * is sufficient (the IDE driver will autodetect the drive geometry).
137  */
138 #ifdef CONFIG_IA64_GENERIC
139 extern char drive_info[4 * 16];
140 #else
141 char drive_info[4 * 16];
142 #endif
143
144 /*
145  * Get nasid of current cpu early in boot before nodepda is initialized
146  */
147 static int
148 boot_get_nasid(void)
149 {
150         int nasid;
151
152         if (ia64_sn_get_sapic_info(get_sapicid(), &nasid, NULL, NULL))
153                 BUG();
154         return nasid;
155 }
156
157 /*
158  * This routine can only be used during init, since
159  * smp_boot_data is an init data structure.
160  * We have to use smp_boot_data.cpu_phys_id to find
161  * the physical id of the processor because the normal
162  * cpu_physical_id() relies on data structures that
163  * may not be initialized yet.
164  */
165
166 static int __init pxm_to_nasid(int pxm)
167 {
168         int i;
169         int nid;
170
171         nid = pxm_to_nid_map[pxm];
172         for (i = 0; i < num_node_memblks; i++) {
173                 if (node_memblk[i].nid == nid) {
174                         return NASID_GET(node_memblk[i].start_paddr);
175                 }
176         }
177         return -1;
178 }
179
180 /**
181  * early_sn_setup - early setup routine for SN platforms
182  *
183  * Sets up an initial console to aid debugging.  Intended primarily
184  * for bringup.  See start_kernel() in init/main.c.
185  */
186
187 void __init early_sn_setup(void)
188 {
189         efi_system_table_t *efi_systab;
190         efi_config_table_t *config_tables;
191         struct ia64_sal_systab *sal_systab;
192         struct ia64_sal_desc_entry_point *ep;
193         char *p;
194         int i, j;
195
196         /*
197          * Parse enough of the SAL tables to locate the SAL entry point. Since, console
198          * IO on SN2 is done via SAL calls, early_printk won't work without this.
199          *
200          * This code duplicates some of the ACPI table parsing that is in efi.c & sal.c.
201          * Any changes to those file may have to be made hereas well.
202          */
203         efi_systab = (efi_system_table_t *) __va(ia64_boot_param->efi_systab);
204         config_tables = __va(efi_systab->tables);
205         for (i = 0; i < efi_systab->nr_tables; i++) {
206                 if (efi_guidcmp(config_tables[i].guid, SAL_SYSTEM_TABLE_GUID) ==
207                     0) {
208                         sal_systab = __va(config_tables[i].table);
209                         p = (char *)(sal_systab + 1);
210                         for (j = 0; j < sal_systab->entry_count; j++) {
211                                 if (*p == SAL_DESC_ENTRY_POINT) {
212                                         ep = (struct ia64_sal_desc_entry_point
213                                               *)p;
214                                         ia64_sal_handler_init(__va
215                                                               (ep->sal_proc),
216                                                               __va(ep->gp));
217                                         return;
218                                 }
219                                 p += SAL_DESC_SIZE(*p);
220                         }
221                 }
222         }
223         /* Uh-oh, SAL not available?? */
224         printk(KERN_ERR "failed to find SAL entry point\n");
225 }
226
227 extern int platform_intr_list[];
228 extern nasid_t master_nasid;
229 static int __initdata shub_1_1_found = 0;
230
231 /*
232  * sn_check_for_wars
233  *
234  * Set flag for enabling shub specific wars
235  */
236
237 static inline int __init is_shub_1_1(int nasid)
238 {
239         unsigned long id;
240         int rev;
241
242         if (is_shub2())
243                 return 0;
244         id = REMOTE_HUB_L(nasid, SH1_SHUB_ID);
245         rev = (id & SH1_SHUB_ID_REVISION_MASK) >> SH1_SHUB_ID_REVISION_SHFT;
246         return rev <= 2;
247 }
248
249 static void __init sn_check_for_wars(void)
250 {
251         int cnode;
252
253         if (is_shub2()) {
254                 /* none yet */
255         } else {
256                 for_each_online_node(cnode) {
257                         if (is_shub_1_1(cnodeid_to_nasid(cnode)))
258                                 shub_1_1_found = 1;
259                 }
260         }
261 }
262
263 /**
264  * sn_setup - SN platform setup routine
265  * @cmdline_p: kernel command line
266  *
267  * Handles platform setup for SN machines.  This includes determining
268  * the RTC frequency (via a SAL call), initializing secondary CPUs, and
269  * setting up per-node data areas.  The console is also initialized here.
270  */
271 void __init sn_setup(char **cmdline_p)
272 {
273         long status, ticks_per_sec, drift;
274         int pxm;
275         u32 version = sn_sal_rev();
276         extern void sn_cpu_init(void);
277
278         ia64_sn_plat_set_error_handling_features();     // obsolete
279         ia64_sn_set_os_feature(OSF_MCA_SLV_TO_OS_INIT_SLV);
280         ia64_sn_set_os_feature(OSF_FEAT_LOG_SBES);
281
282
283 #if defined(CONFIG_VT) && defined(CONFIG_VGA_CONSOLE)
284         /*
285          * If there was a primary vga adapter identified through the
286          * EFI PCDP table, make it the preferred console.  Otherwise
287          * zero out conswitchp.
288          */
289
290         if (vga_console_membase) {
291                 /* usable vga ... make tty0 the preferred default console */
292                 add_preferred_console("tty", 0, NULL);
293         } else {
294                 printk(KERN_DEBUG "SGI: Disabling VGA console\n");
295 #ifdef CONFIG_DUMMY_CONSOLE
296                 conswitchp = &dummy_con;
297 #else
298                 conswitchp = NULL;
299 #endif                          /* CONFIG_DUMMY_CONSOLE */
300         }
301 #endif                          /* def(CONFIG_VT) && def(CONFIG_VGA_CONSOLE) */
302
303         MAX_DMA_ADDRESS = PAGE_OFFSET + MAX_PHYS_MEMORY;
304
305         memset(physical_node_map, -1, sizeof(physical_node_map));
306         for (pxm = 0; pxm < MAX_PXM_DOMAINS; pxm++)
307                 if (pxm_to_nid_map[pxm] != -1)
308                         physical_node_map[pxm_to_nasid(pxm)] =
309                             pxm_to_nid_map[pxm];
310
311         /*
312          * Old PROMs do not provide an ACPI FADT. Disable legacy keyboard
313          * support here so we don't have to listen to failed keyboard probe
314          * messages.
315          */
316         if (version <= 0x0209 && acpi_kbd_controller_present) {
317                 printk(KERN_INFO "Disabling legacy keyboard support as prom "
318                        "is too old and doesn't provide FADT\n");
319                 acpi_kbd_controller_present = 0;
320         }
321
322         printk("SGI SAL version %x.%02x\n", version >> 8, version & 0x00FF);
323
324         master_nasid = boot_get_nasid();
325
326         status =
327             ia64_sal_freq_base(SAL_FREQ_BASE_REALTIME_CLOCK, &ticks_per_sec,
328                                &drift);
329         if (status != 0 || ticks_per_sec < 100000) {
330                 printk(KERN_WARNING
331                        "unable to determine platform RTC clock frequency, guessing.\n");
332                 /* PROM gives wrong value for clock freq. so guess */
333                 sn_rtc_cycles_per_second = 1000000000000UL / 30000UL;
334         } else
335                 sn_rtc_cycles_per_second = ticks_per_sec;
336
337         platform_intr_list[ACPI_INTERRUPT_CPEI] = IA64_CPE_VECTOR;
338
339         /*
340          * we set the default root device to /dev/hda
341          * to make simulation easy
342          */
343         ROOT_DEV = Root_HDA1;
344
345         /*
346          * Create the PDAs and NODEPDAs for all the cpus.
347          */
348         sn_init_pdas(cmdline_p);
349
350         ia64_mark_idle = &snidle;
351
352         /*
353          * For the bootcpu, we do this here. All other cpus will make the
354          * call as part of cpu_init in slave cpu initialization.
355          */
356         sn_cpu_init();
357
358 #ifdef CONFIG_SMP
359         init_smp_config();
360 #endif
361         screen_info = sn_screen_info;
362
363         sn_timer_init();
364
365         /*
366          * set pm_power_off to a SAL call to allow
367          * sn machines to power off. The SAL call can be replaced
368          * by an ACPI interface call when ACPI is fully implemented
369          * for sn.
370          */
371         pm_power_off = ia64_sn_power_down;
372 }
373
374 /**
375  * sn_init_pdas - setup node data areas
376  *
377  * One time setup for Node Data Area.  Called by sn_setup().
378  */
379 static void __init sn_init_pdas(char **cmdline_p)
380 {
381         cnodeid_t cnode;
382
383         memset(sn_cnodeid_to_nasid, -1,
384                         sizeof(__ia64_per_cpu_var(__sn_cnodeid_to_nasid)));
385         for_each_online_node(cnode)
386                 sn_cnodeid_to_nasid[cnode] =
387                                 pxm_to_nasid(nid_to_pxm_map[cnode]);
388
389         numionodes = num_online_nodes();
390         scan_for_ionodes();
391
392         /*
393          * Allocate & initalize the nodepda for each node.
394          */
395         for_each_online_node(cnode) {
396                 nodepdaindr[cnode] =
397                     alloc_bootmem_node(NODE_DATA(cnode), sizeof(nodepda_t));
398                 memset(nodepdaindr[cnode], 0, sizeof(nodepda_t));
399                 memset(nodepdaindr[cnode]->phys_cpuid, -1,
400                     sizeof(nodepdaindr[cnode]->phys_cpuid));
401         }
402
403         /*
404          * Allocate & initialize nodepda for TIOs.  For now, put them on node 0.
405          */
406         for (cnode = num_online_nodes(); cnode < numionodes; cnode++) {
407                 nodepdaindr[cnode] =
408                     alloc_bootmem_node(NODE_DATA(0), sizeof(nodepda_t));
409                 memset(nodepdaindr[cnode], 0, sizeof(nodepda_t));
410         }
411
412         /*
413          * Now copy the array of nodepda pointers to each nodepda.
414          */
415         for (cnode = 0; cnode < numionodes; cnode++)
416                 memcpy(nodepdaindr[cnode]->pernode_pdaindr, nodepdaindr,
417                        sizeof(nodepdaindr));
418
419         /*
420          * Set up IO related platform-dependent nodepda fields.
421          * The following routine actually sets up the hubinfo struct
422          * in nodepda.
423          */
424         for_each_online_node(cnode) {
425                 bte_init_node(nodepdaindr[cnode], cnode);
426         }
427
428         /*
429          * Initialize the per node hubdev.  This includes IO Nodes and
430          * headless/memless nodes.
431          */
432         for (cnode = 0; cnode < numionodes; cnode++) {
433                 hubdev_init_node(nodepdaindr[cnode], cnode);
434         }
435 }
436
437 /**
438  * sn_cpu_init - initialize per-cpu data areas
439  * @cpuid: cpuid of the caller
440  *
441  * Called during cpu initialization on each cpu as it starts.
442  * Currently, initializes the per-cpu data area for SNIA.
443  * Also sets up a few fields in the nodepda.  Also known as
444  * platform_cpu_init() by the ia64 machvec code.
445  */
446 void __init sn_cpu_init(void)
447 {
448         int cpuid;
449         int cpuphyid;
450         int nasid;
451         int subnode;
452         int slice;
453         int cnode;
454         int i;
455         static int wars_have_been_checked;
456
457         if (smp_processor_id() == 0 && IS_MEDUSA()) {
458                 if (ia64_sn_is_fake_prom())
459                         sn_prom_type = 2;
460                 else
461                         sn_prom_type = 1;
462                 printk("Running on medusa with %s PROM\n", (sn_prom_type == 1) ? "real" : "fake");
463         }
464
465         memset(pda, 0, sizeof(pda));
466         if (ia64_sn_get_sn_info(0, &sn_hub_info->shub2, &sn_hub_info->nasid_bitmask, &sn_hub_info->nasid_shift,
467                                 &sn_system_size, &sn_sharing_domain_size, &sn_partition_id,
468                                 &sn_coherency_id, &sn_region_size))
469                 BUG();
470         sn_hub_info->as_shift = sn_hub_info->nasid_shift - 2;
471
472         /*
473          * The boot cpu makes this call again after platform initialization is
474          * complete.
475          */
476         if (nodepdaindr[0] == NULL)
477                 return;
478
479         for (i = 0; i < MAX_PROM_FEATURE_SETS; i++)
480                 if (ia64_sn_get_prom_feature_set(i, &sn_prom_features[i]) != 0)
481                         break;
482
483         cpuid = smp_processor_id();
484         cpuphyid = get_sapicid();
485
486         if (ia64_sn_get_sapic_info(cpuphyid, &nasid, &subnode, &slice))
487                 BUG();
488
489         for (i=0; i < MAX_NUMNODES; i++) {
490                 if (nodepdaindr[i]) {
491                         nodepdaindr[i]->phys_cpuid[cpuid].nasid = nasid;
492                         nodepdaindr[i]->phys_cpuid[cpuid].slice = slice;
493                         nodepdaindr[i]->phys_cpuid[cpuid].subnode = subnode;
494                 }
495         }
496
497         cnode = nasid_to_cnodeid(nasid);
498
499         sn_nodepda = nodepdaindr[cnode];
500
501         pda->led_address =
502             (typeof(pda->led_address)) (LED0 + (slice << LED_CPU_SHIFT));
503         pda->led_state = LED_ALWAYS_SET;
504         pda->hb_count = HZ / 2;
505         pda->hb_state = 0;
506         pda->idle_flag = 0;
507
508         if (cpuid != 0) {
509                 /* copy cpu 0's sn_cnodeid_to_nasid table to this cpu's */
510                 memcpy(sn_cnodeid_to_nasid,
511                        (&per_cpu(__sn_cnodeid_to_nasid, 0)),
512                        sizeof(__ia64_per_cpu_var(__sn_cnodeid_to_nasid)));
513         }
514
515         /*
516          * Check for WARs.
517          * Only needs to be done once, on BSP.
518          * Has to be done after loop above, because it uses this cpu's
519          * sn_cnodeid_to_nasid table which was just initialized if this
520          * isn't cpu 0.
521          * Has to be done before assignment below.
522          */
523         if (!wars_have_been_checked) {
524                 sn_check_for_wars();
525                 wars_have_been_checked = 1;
526         }
527         sn_hub_info->shub_1_1_found = shub_1_1_found;
528
529         /*
530          * Set up addresses of PIO/MEM write status registers.
531          */
532         {
533                 u64 pio1[] = {SH1_PIO_WRITE_STATUS_0, 0, SH1_PIO_WRITE_STATUS_1, 0};
534                 u64 pio2[] = {SH2_PIO_WRITE_STATUS_0, SH2_PIO_WRITE_STATUS_1,
535                         SH2_PIO_WRITE_STATUS_2, SH2_PIO_WRITE_STATUS_3};
536                 u64 *pio;
537                 pio = is_shub1() ? pio1 : pio2;
538                 pda->pio_write_status_addr = (volatile unsigned long *) LOCAL_MMR_ADDR(pio[slice]);
539                 pda->pio_write_status_val = is_shub1() ? SH_PIO_WRITE_STATUS_PENDING_WRITE_COUNT_MASK : 0;
540         }
541
542         /*
543          * WAR addresses for SHUB 1.x.
544          */
545         if (local_node_data->active_cpu_count++ == 0 && is_shub1()) {
546                 int buddy_nasid;
547                 buddy_nasid =
548                     cnodeid_to_nasid(numa_node_id() ==
549                                      num_online_nodes() - 1 ? 0 : numa_node_id() + 1);
550                 pda->pio_shub_war_cam_addr =
551                     (volatile unsigned long *)GLOBAL_MMR_ADDR(nasid,
552                                                               SH1_PI_CAM_CONTROL);
553         }
554 }
555
556 /*
557  * Scan klconfig for ionodes.  Add the nasids to the
558  * physical_node_map and the pda and increment numionodes.
559  */
560
561 static void __init scan_for_ionodes(void)
562 {
563         int nasid = 0;
564         lboard_t *brd;
565
566         /* fakeprom does not support klgraph */
567         if (IS_RUNNING_ON_FAKE_PROM())
568                 return;
569
570         /* Setup ionodes with memory */
571         for (nasid = 0; nasid < MAX_PHYSNODE_ID; nasid += 2) {
572                 char *klgraph_header;
573                 cnodeid_t cnodeid;
574
575                 if (physical_node_map[nasid] == -1)
576                         continue;
577
578                 cnodeid = -1;
579                 klgraph_header = __va(ia64_sn_get_klconfig_addr(nasid));
580                 if (!klgraph_header) {
581                         BUG();  /* All nodes must have klconfig tables! */
582                 }
583                 cnodeid = nasid_to_cnodeid(nasid);
584                 root_lboard[cnodeid] = (lboard_t *)
585                     NODE_OFFSET_TO_LBOARD((nasid),
586                                           ((kl_config_hdr_t
587                                             *) (klgraph_header))->
588                                           ch_board_info);
589         }
590
591         /* Scan headless/memless IO Nodes. */
592         for (nasid = 0; nasid < MAX_PHYSNODE_ID; nasid += 2) {
593                 /* if there's no nasid, don't try to read the klconfig on the node */
594                 if (physical_node_map[nasid] == -1)
595                         continue;
596                 brd = find_lboard_any((lboard_t *)
597                                       root_lboard[nasid_to_cnodeid(nasid)],
598                                       KLTYPE_SNIA);
599                 if (brd) {
600                         brd = KLCF_NEXT_ANY(brd);       /* Skip this node's lboard */
601                         if (!brd)
602                                 continue;
603                 }
604
605                 brd = find_lboard_any(brd, KLTYPE_SNIA);
606
607                 while (brd) {
608                         sn_cnodeid_to_nasid[numionodes] = brd->brd_nasid;
609                         physical_node_map[brd->brd_nasid] = numionodes;
610                         root_lboard[numionodes] = brd;
611                         numionodes++;
612                         brd = KLCF_NEXT_ANY(brd);
613                         if (!brd)
614                                 break;
615
616                         brd = find_lboard_any(brd, KLTYPE_SNIA);
617                 }
618         }
619
620         /* Scan for TIO nodes. */
621         for (nasid = 0; nasid < MAX_PHYSNODE_ID; nasid += 2) {
622                 /* if there's no nasid, don't try to read the klconfig on the node */
623                 if (physical_node_map[nasid] == -1)
624                         continue;
625                 brd = find_lboard_any((lboard_t *)
626                                       root_lboard[nasid_to_cnodeid(nasid)],
627                                       KLTYPE_TIO);
628                 while (brd) {
629                         sn_cnodeid_to_nasid[numionodes] = brd->brd_nasid;
630                         physical_node_map[brd->brd_nasid] = numionodes;
631                         root_lboard[numionodes] = brd;
632                         numionodes++;
633                         brd = KLCF_NEXT_ANY(brd);
634                         if (!brd)
635                                 break;
636
637                         brd = find_lboard_any(brd, KLTYPE_TIO);
638                 }
639         }
640 }
641
642 int
643 nasid_slice_to_cpuid(int nasid, int slice)
644 {
645         long cpu;
646
647         for (cpu=0; cpu < NR_CPUS; cpu++)
648                 if (cpuid_to_nasid(cpu) == nasid &&
649                                         cpuid_to_slice(cpu) == slice)
650                         return cpu;
651
652         return -1;
653 }
654
655 int sn_prom_feature_available(int id)
656 {
657         if (id >= BITS_PER_LONG * MAX_PROM_FEATURE_SETS)
658                 return 0;
659         return test_bit(id, sn_prom_features);
660 }
661 EXPORT_SYMBOL(sn_prom_feature_available);
662