Home | History | Annotate | Line # | Download | only in boot
      1  1.12  christos /*	$NetBSD: prompatch.c,v 1.12 2005/12/11 12:19:08 christos Exp $ */
      2   1.1       uwe 
      3   1.1       uwe /*
      4   1.1       uwe  * Copyright (c) 2001 Valeriy E. Ushakov
      5   1.1       uwe  * All rights reserved.
      6   1.1       uwe  *
      7   1.1       uwe  * Redistribution and use in source and binary forms, with or without
      8   1.1       uwe  * modification, are permitted provided that the following conditions
      9   1.1       uwe  * are met:
     10   1.1       uwe  * 1. Redistributions of source code must retain the above copyright
     11   1.1       uwe  *    notice, this list of conditions and the following disclaimer.
     12   1.1       uwe  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1       uwe  *    notice, this list of conditions and the following disclaimer in the
     14   1.1       uwe  *    documentation and/or other materials provided with the distribution.
     15   1.1       uwe  * 3. The name of the author may not be used to endorse or promote products
     16   1.1       uwe  *    derived from this software without specific prior written permission
     17   1.1       uwe  *
     18   1.1       uwe  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     19   1.1       uwe  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     20   1.1       uwe  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     21   1.1       uwe  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     22   1.1       uwe  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     23   1.1       uwe  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     24   1.1       uwe  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     25   1.1       uwe  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     26   1.1       uwe  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     27   1.1       uwe  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     28   1.1       uwe  */
     29   1.1       uwe 
     30   1.1       uwe #include <sys/param.h>
     31   1.1       uwe #include <lib/libsa/stand.h>
     32   1.7       mrg #include <lib/libkern/libkern.h>
     33   1.1       uwe #include <machine/promlib.h>
     34   1.1       uwe 
     35  1.11       uwe 
     36   1.1       uwe void prom_patch(void);
     37   1.1       uwe 
     38  1.11       uwe static const char *match_c5ip(void);
     39  1.11       uwe 
     40  1.11       uwe 
     41   1.1       uwe /*
     42   1.1       uwe  * Each patch entry is processed by:
     43   1.1       uwe  * printf(message);  prom_interpret(patch);  printf("\n");
     44   1.1       uwe  */
     45   1.1       uwe struct patch_entry {
     46  1.11       uwe 	const char *message;
     47  1.11       uwe 	const char *patch;
     48   1.1       uwe };
     49   1.1       uwe 
     50  1.11       uwe 
     51   1.1       uwe /*
     52   1.1       uwe  * PROM patches to apply to machine matching name/promvers.
     53   1.1       uwe  */
     54   1.1       uwe struct prom_patch {
     55  1.11       uwe 	const char *name;		/* "name" of the root node */
     56   1.6       jdc 	int promvers;			/* prom_version() */
     57  1.11       uwe 	const char *(*submatch)(void);	/* Additional matches to test */
     58  1.11       uwe 	const struct patch_entry *patches;	/* The patches themselves */
     59   1.1       uwe };
     60   1.1       uwe 
     61  1.11       uwe 
     62   1.3       uwe /*
     63  1.11       uwe  * Patches for JavaStation 1 with OBP 2.30.
     64   1.5       uwe  * NB: its romvec is version 3, so this is PROM_OBP_V3.
     65   1.3       uwe  */
     66  1.11       uwe static const struct patch_entry patch_js1_obp[] = {
     67   1.5       uwe 
     68   1.5       uwe /*
     69   1.5       uwe  * Can not remove a node, so just rename bogus /obio/zs so that it
     70   1.5       uwe  * does not get matched.
     71   1.5       uwe  */
     72   1.5       uwe { "zs: renaming out of the way",
     73   1.5       uwe 	"\" /obio/zs@0,0\" find-device \" fakezs\" name"
     74   1.5       uwe 	" \" /obio/zs@0,100000\" find-device \" fakezs\" name "
     75   1.5       uwe 	" device-end"
     76   1.5       uwe },
     77   1.3       uwe 
     78   1.3       uwe /*
     79   1.3       uwe  * Give "su" (com port) "interrupts" property.
     80   1.3       uwe  */
     81   1.3       uwe { "su: adding \"interrupts\"",
     82   1.5       uwe 	"\" /obio/su\" find-device"
     83   1.3       uwe 	" d# 13 \" interrupts\" integer-attribute"
     84   1.5       uwe 	" device-end"
     85   1.3       uwe },
     86   1.4   aymeric 
     87   1.3       uwe /*
     88   1.5       uwe  * Create a bare-bones "8042" (pckbc) node - just enough to attach it.
     89   1.4   aymeric  */
     90   1.5       uwe { "8042: creating node",
     91   1.5       uwe 	"0 0 0 0 \" /obio\" begin-package"
     92   1.5       uwe 	" \" 8042\" name"
     93   1.5       uwe 	" 300060 0 8 reg"
     94   1.4   aymeric 	" d# 13 \" interrupts\" integer-attribute"
     95   1.5       uwe 	" end-package"
     96   1.4   aymeric },
     97   1.4   aymeric 
     98   1.4   aymeric { NULL, NULL }
     99   1.5       uwe }; /* patch_js1_obp */
    100   1.5       uwe 
    101   1.4   aymeric 
    102   1.4   aymeric /*
    103   1.4   aymeric  * Patches for JavaStation 1 with OpenFirmware.
    104   1.1       uwe  * PROM in these machines is crippled in many ways.
    105   1.1       uwe  */
    106  1.11       uwe static const struct patch_entry patch_js1_ofw[] = {
    107   1.1       uwe 
    108   1.1       uwe /*
    109   1.8       wiz  * JS1/OFW has no CPU node in the device tree.  Create one to save us a
    110   1.1       uwe  * _lot_ of headache in cpu.c and mainbus_attach.  Mostly copied from
    111   1.1       uwe  * OBP2.  While clock-frequency is usually at the root node, add it
    112   1.8       wiz  * here for brevity as kernel checks CPU node for this property anyway.
    113   1.1       uwe  */
    114   1.1       uwe { "cpu: creating node ", /* NB: space at the end is intentional */
    115   1.1       uwe 	"0 0 0 0 \" /\" begin-package"
    116   1.1       uwe 	" \" FMI,MB86904\" device-name" /* NB: will print the name */
    117   1.1       uwe 	" \" cpu\" device-type"
    118   1.1       uwe 	" 0 \" mid\" integer-property"
    119   1.1       uwe 
    120   1.1       uwe 	" 8 \" sparc-version\" integer-property"
    121   1.1       uwe 	" 4 \" version\" integer-property"
    122   1.1       uwe 	" 0 \" implementation\" integer-property"
    123   1.1       uwe 	" 4 \" psr-version\" integer-property"
    124   1.1       uwe  	" 0 \" psr-implementation\" integer-property"
    125   1.1       uwe 
    126   1.1       uwe 	" d# 100000000 \" clock-frequency\" integer-property"
    127   1.1       uwe 
    128   1.1       uwe 	" d# 4096 \" page-size\" integer-property"
    129   1.1       uwe 	" d# 256 \" mmu-nctx\" integer-property"
    130   1.1       uwe 
    131   1.1       uwe 	" 2 \" ncaches\" integer-property"
    132   1.1       uwe 
    133   1.1       uwe 	" d# 512 \" icache-nlines\" integer-property"
    134   1.1       uwe 	" d# 32 \" icache-line-size\" integer-property"
    135   1.1       uwe 	" 1 \" icache-associativity\" integer-property"
    136   1.1       uwe 
    137   1.1       uwe 	" d# 512 \" dcache-nlines\" integer-property"
    138   1.1       uwe 	" d# 16 \" dcache-line-size\" integer-property"
    139   1.1       uwe 	" 1 \" dcache-associativity\" integer-property"
    140   1.1       uwe 
    141   1.1       uwe 	" 0 0 \" cache-physical?\" property"
    142   1.1       uwe 	" 0 0 \" cache-coherence?\" property"
    143   1.1       uwe 
    144   1.1       uwe 	" end-package"
    145   1.1       uwe },
    146   1.1       uwe 
    147   1.1       uwe /*
    148   1.1       uwe  * mk48txx_attach needs a model name, spare clockattach from guesswork.
    149   1.1       uwe  */
    150   1.1       uwe { "eeprom: adding \"model\"",
    151   1.1       uwe 	"dev /obio/eeprom \" mk48t08\" model device-end"
    152   1.1       uwe },
    153   1.1       uwe 
    154   1.1       uwe /*
    155   1.1       uwe  * "interrupts" property is bogusly zero, delete it and let
    156  1.11       uwe  * sbus_get_intr fallback to correct "intr" property.
    157   1.1       uwe  */
    158   1.1       uwe { "le: deleting bogus \"interrupts\"",
    159   1.1       uwe 	"dev /sbus/ledma/le \" interrupts\" delete-property device-end"
    160   1.1       uwe },
    161   1.1       uwe 
    162   1.1       uwe /*
    163   1.1       uwe  * Give "su" (com port) "interrupts" property.
    164   1.1       uwe  */
    165   1.1       uwe { "su: adding \"interrupts\"",
    166   1.1       uwe 	"dev /obio/su d# 13 \" interrupts\" integer-property device-end"
    167   1.1       uwe },
    168   1.1       uwe 
    169   1.1       uwe /*
    170   1.1       uwe  * Give "8042" (pckbc) "interrupts" property.
    171   1.1       uwe  */
    172   1.1       uwe { "8042: adding \"interrupts\"",
    173   1.1       uwe 	"dev /obio/8042 d# 13 \" interrupts\" integer-property device-end"
    174   1.1       uwe },
    175   1.1       uwe 
    176   1.1       uwe { NULL, NULL }
    177   1.3       uwe }; /* patch_js1_ofw */
    178   1.1       uwe 
    179  1.11       uwe 
    180   1.6       jdc /*
    181  1.11       uwe  * Patches for Cycle 5 IP.
    182   1.6       jdc  */
    183  1.11       uwe static const struct patch_entry patch_c5ip[] = {
    184   1.1       uwe 
    185   1.6       jdc /*
    186   1.6       jdc  * Can not remove a node, so just rename bogus /iommu/sbus/SUNW,CS4231
    187   1.6       jdc  * so that it does not get matched.
    188   1.6       jdc  */
    189   1.6       jdc { "SUNW,CS4231: renaming out of the way",
    190   1.6       jdc 	"\" /iommu/sbus/SUNW,CS4231@3,c000000\" find-device \" fakeCS4231\" name"
    191   1.6       jdc 	" device-end"
    192   1.6       jdc },
    193   1.6       jdc 
    194   1.6       jdc { NULL, NULL }
    195   1.6       jdc }; /* patch_c5ip */
    196   1.1       uwe 
    197  1.10  macallan 
    198  1.10  macallan /*
    199  1.11       uwe  * Patches for JavaStation NC, aka Krups.
    200  1.11       uwe  */
    201  1.11       uwe static const struct patch_entry patch_krups[] = {
    202  1.11       uwe 
    203  1.11       uwe /*
    204  1.11       uwe  * Check if there's a node for the audio chip, if not create it.
    205  1.10  macallan  */
    206  1.10  macallan { "sound device node: ",
    207  1.10  macallan 	"\" /pci/ebus/sound\" ' find-device catch"
    208  1.10  macallan 	" 0= if"
    209  1.10  macallan 		" device-end"
    210  1.10  macallan 		" \" ok\""
    211  1.10  macallan 	" else"
    212  1.10  macallan 		" 0 0 0 0 \" /pci/ebus\" begin-package"
    213  1.10  macallan 			" \" sound\" name"
    214  1.10  macallan 			" 200000 1 600 reg"
    215  1.10  macallan 		" end-package"
    216  1.10  macallan 		" \" created\""
    217  1.10  macallan 	" then type"
    218  1.10  macallan },
    219  1.10  macallan 
    220  1.10  macallan { NULL, NULL }
    221  1.10  macallan }; /* patch_krups */
    222  1.10  macallan 
    223  1.11       uwe 
    224  1.11       uwe static const struct prom_patch prom_patch_tab[] = {
    225   1.6       jdc 	{ "SUNW,JavaStation-1",  PROM_OBP_V3,   NULL,	    patch_js1_obp },
    226   1.6       jdc 	{ "SUNW,JDM1",		 PROM_OPENFIRM, NULL,	    patch_js1_ofw },
    227   1.6       jdc 	{ "SUNW,SPARCstation-5", PROM_OBP_V3,   match_c5ip, patch_c5ip	  },
    228  1.10  macallan 	{ "SUNW,JSIIep",	 PROM_OPENFIRM,	NULL,	    patch_krups   },
    229   1.1       uwe 	{ NULL, 0, NULL }
    230   1.1       uwe };
    231   1.1       uwe 
    232   1.1       uwe 
    233   1.1       uwe /*
    234  1.11       uwe  * Additional match routine for Cycle 5 IP.
    235   1.6       jdc  * This uses the SPARCstation 5 PROM almost unchanged, so we check the
    236   1.6       jdc  * "banner-name" attribute of the root node.
    237   1.6       jdc  */
    238  1.11       uwe static const char *
    239  1.11       uwe match_c5ip(void)
    240   1.6       jdc {
    241   1.9   hannken 	if (strcmp(prom_getpropstring(prom_findroot(), "banner-name"),
    242   1.6       jdc 	    "Cycle Computer Corporation") == 0)
    243   1.6       jdc 		 return "Cycle 5 IP";
    244   1.6       jdc 
    245   1.6       jdc 	return NULL;
    246   1.6       jdc }
    247   1.6       jdc 
    248  1.11       uwe 
    249   1.6       jdc /*
    250   1.6       jdc  * Check if this machine needs tweaks to its PROM.  It's simpler to fix
    251   1.6       jdc  * the PROM than to invent workarounds in the kernel code.  We do this
    252   1.3       uwe  * patching in the secondary boot to avoid wasting space in the kernel.
    253   1.1       uwe  */
    254   1.1       uwe void
    255   1.1       uwe prom_patch(void)
    256   1.1       uwe {
    257   1.1       uwe 	char namebuf[32];
    258   1.1       uwe 	char *propval;
    259  1.11       uwe 	const struct prom_patch *p;
    260   1.1       uwe 
    261   1.3       uwe 	if (prom_version() == PROM_OLDMON)
    262   1.3       uwe 		return;		/* don't bother - no forth in this */
    263   1.3       uwe 
    264   1.9   hannken 	propval = prom_getpropstringA(prom_findroot(), "name",
    265   1.1       uwe 				 namebuf, sizeof(namebuf));
    266   1.1       uwe 	if (propval == NULL)
    267   1.1       uwe 		return;
    268   1.1       uwe 
    269   1.1       uwe 	for (p = prom_patch_tab; p->name != NULL; ++p) {
    270   1.1       uwe 		if (p->promvers == prom_version()
    271   1.1       uwe 		    && strcmp(p->name, namebuf) == 0) {
    272  1.11       uwe 			const struct patch_entry *e;
    273   1.3       uwe 			const char *promstr = "???";
    274  1.11       uwe 			const char *submatch_info = NULL;
    275   1.3       uwe 
    276   1.3       uwe 			switch (prom_version()) {
    277   1.3       uwe 			case PROM_OBP_V0:
    278   1.3       uwe 				promstr = "OBP0";
    279   1.3       uwe 				break;
    280   1.3       uwe 			case PROM_OBP_V2:
    281   1.3       uwe 				promstr = "OBP2";
    282   1.3       uwe 				break;
    283   1.3       uwe 			case PROM_OBP_V3:
    284   1.3       uwe 				promstr = "OBP3";
    285   1.3       uwe 				break;
    286   1.3       uwe 			case PROM_OPENFIRM:
    287   1.3       uwe 				promstr = "OFW";
    288   1.3       uwe 				break;
    289   1.3       uwe 			}
    290   1.1       uwe 
    291   1.6       jdc 
    292   1.6       jdc 			if (p->submatch != NULL) {
    293   1.6       jdc 				submatch_info = (*p->submatch)();
    294   1.6       jdc 				if (submatch_info == NULL)
    295   1.6       jdc 					continue;
    296   1.6       jdc 			}
    297   1.6       jdc 
    298   1.6       jdc 			if (submatch_info != NULL)
    299   1.6       jdc 				printf("Patching %s for %s (%s)\n",
    300   1.6       jdc 				    promstr, p->name, submatch_info);
    301   1.6       jdc 			else
    302   1.6       jdc 				printf("Patching %s for %s\n",
    303   1.6       jdc 				    promstr, p->name);
    304   1.1       uwe 			for (e = p->patches; e->message != NULL; ++e) {
    305   1.1       uwe 				printf("%s", e->message);
    306   1.1       uwe 				prom_interpret(e->patch);
    307   1.1       uwe 				printf("\n");
    308   1.1       uwe 			}
    309   1.1       uwe 			return;
    310   1.1       uwe 		}
    311   1.1       uwe 	}
    312   1.1       uwe }
    313