prom.c 36 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505
  1. /*
  2. * Procedures for creating, accessing and interpreting the device tree.
  3. *
  4. * Paul Mackerras August 1996.
  5. * Copyright (C) 1996-2005 Paul Mackerras.
  6. *
  7. * Adapted for 64bit PowerPC by Dave Engebretsen and Peter Bergner.
  8. * {engebret|bergner}@us.ibm.com
  9. *
  10. * This program is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU General Public License
  12. * as published by the Free Software Foundation; either version
  13. * 2 of the License, or (at your option) any later version.
  14. */
  15. #undef DEBUG
  16. #include <stdarg.h>
  17. #include <linux/kernel.h>
  18. #include <linux/string.h>
  19. #include <linux/init.h>
  20. #include <linux/threads.h>
  21. #include <linux/spinlock.h>
  22. #include <linux/types.h>
  23. #include <linux/pci.h>
  24. #include <linux/stringify.h>
  25. #include <linux/delay.h>
  26. #include <linux/initrd.h>
  27. #include <linux/bitops.h>
  28. #include <linux/module.h>
  29. #include <linux/kexec.h>
  30. #include <linux/debugfs.h>
  31. #include <linux/irq.h>
  32. #include <asm/prom.h>
  33. #include <asm/rtas.h>
  34. #include <asm/lmb.h>
  35. #include <asm/page.h>
  36. #include <asm/processor.h>
  37. #include <asm/irq.h>
  38. #include <asm/io.h>
  39. #include <asm/kdump.h>
  40. #include <asm/smp.h>
  41. #include <asm/system.h>
  42. #include <asm/mmu.h>
  43. #include <asm/pgtable.h>
  44. #include <asm/pci.h>
  45. #include <asm/iommu.h>
  46. #include <asm/btext.h>
  47. #include <asm/sections.h>
  48. #include <asm/machdep.h>
  49. #include <asm/pSeries_reconfig.h>
  50. #include <asm/pci-bridge.h>
  51. #include <asm/kexec.h>
  52. #ifdef DEBUG
  53. #define DBG(fmt...) printk(KERN_ERR fmt)
  54. #else
  55. #define DBG(fmt...)
  56. #endif
  57. static int __initdata dt_root_addr_cells;
  58. static int __initdata dt_root_size_cells;
  59. #ifdef CONFIG_PPC64
  60. int __initdata iommu_is_off;
  61. int __initdata iommu_force_on;
  62. unsigned long tce_alloc_start, tce_alloc_end;
  63. #endif
  64. typedef u32 cell_t;
  65. #if 0
  66. static struct boot_param_header *initial_boot_params __initdata;
  67. #else
  68. struct boot_param_header *initial_boot_params;
  69. #endif
  70. extern struct device_node *allnodes; /* temporary while merging */
  71. extern rwlock_t devtree_lock; /* temporary while merging */
  72. /* export that to outside world */
  73. struct device_node *of_chosen;
  74. static inline char *find_flat_dt_string(u32 offset)
  75. {
  76. return ((char *)initial_boot_params) +
  77. initial_boot_params->off_dt_strings + offset;
  78. }
  79. /**
  80. * This function is used to scan the flattened device-tree, it is
  81. * used to extract the memory informations at boot before we can
  82. * unflatten the tree
  83. */
  84. int __init of_scan_flat_dt(int (*it)(unsigned long node,
  85. const char *uname, int depth,
  86. void *data),
  87. void *data)
  88. {
  89. unsigned long p = ((unsigned long)initial_boot_params) +
  90. initial_boot_params->off_dt_struct;
  91. int rc = 0;
  92. int depth = -1;
  93. do {
  94. u32 tag = *((u32 *)p);
  95. char *pathp;
  96. p += 4;
  97. if (tag == OF_DT_END_NODE) {
  98. depth --;
  99. continue;
  100. }
  101. if (tag == OF_DT_NOP)
  102. continue;
  103. if (tag == OF_DT_END)
  104. break;
  105. if (tag == OF_DT_PROP) {
  106. u32 sz = *((u32 *)p);
  107. p += 8;
  108. if (initial_boot_params->version < 0x10)
  109. p = _ALIGN(p, sz >= 8 ? 8 : 4);
  110. p += sz;
  111. p = _ALIGN(p, 4);
  112. continue;
  113. }
  114. if (tag != OF_DT_BEGIN_NODE) {
  115. printk(KERN_WARNING "Invalid tag %x scanning flattened"
  116. " device tree !\n", tag);
  117. return -EINVAL;
  118. }
  119. depth++;
  120. pathp = (char *)p;
  121. p = _ALIGN(p + strlen(pathp) + 1, 4);
  122. if ((*pathp) == '/') {
  123. char *lp, *np;
  124. for (lp = NULL, np = pathp; *np; np++)
  125. if ((*np) == '/')
  126. lp = np+1;
  127. if (lp != NULL)
  128. pathp = lp;
  129. }
  130. rc = it(p, pathp, depth, data);
  131. if (rc != 0)
  132. break;
  133. } while(1);
  134. return rc;
  135. }
  136. unsigned long __init of_get_flat_dt_root(void)
  137. {
  138. unsigned long p = ((unsigned long)initial_boot_params) +
  139. initial_boot_params->off_dt_struct;
  140. while(*((u32 *)p) == OF_DT_NOP)
  141. p += 4;
  142. BUG_ON (*((u32 *)p) != OF_DT_BEGIN_NODE);
  143. p += 4;
  144. return _ALIGN(p + strlen((char *)p) + 1, 4);
  145. }
  146. /**
  147. * This function can be used within scan_flattened_dt callback to get
  148. * access to properties
  149. */
  150. void* __init of_get_flat_dt_prop(unsigned long node, const char *name,
  151. unsigned long *size)
  152. {
  153. unsigned long p = node;
  154. do {
  155. u32 tag = *((u32 *)p);
  156. u32 sz, noff;
  157. const char *nstr;
  158. p += 4;
  159. if (tag == OF_DT_NOP)
  160. continue;
  161. if (tag != OF_DT_PROP)
  162. return NULL;
  163. sz = *((u32 *)p);
  164. noff = *((u32 *)(p + 4));
  165. p += 8;
  166. if (initial_boot_params->version < 0x10)
  167. p = _ALIGN(p, sz >= 8 ? 8 : 4);
  168. nstr = find_flat_dt_string(noff);
  169. if (nstr == NULL) {
  170. printk(KERN_WARNING "Can't find property index"
  171. " name !\n");
  172. return NULL;
  173. }
  174. if (strcmp(name, nstr) == 0) {
  175. if (size)
  176. *size = sz;
  177. return (void *)p;
  178. }
  179. p += sz;
  180. p = _ALIGN(p, 4);
  181. } while(1);
  182. }
  183. int __init of_flat_dt_is_compatible(unsigned long node, const char *compat)
  184. {
  185. const char* cp;
  186. unsigned long cplen, l;
  187. cp = of_get_flat_dt_prop(node, "compatible", &cplen);
  188. if (cp == NULL)
  189. return 0;
  190. while (cplen > 0) {
  191. if (strncasecmp(cp, compat, strlen(compat)) == 0)
  192. return 1;
  193. l = strlen(cp) + 1;
  194. cp += l;
  195. cplen -= l;
  196. }
  197. return 0;
  198. }
  199. static void *__init unflatten_dt_alloc(unsigned long *mem, unsigned long size,
  200. unsigned long align)
  201. {
  202. void *res;
  203. *mem = _ALIGN(*mem, align);
  204. res = (void *)*mem;
  205. *mem += size;
  206. return res;
  207. }
  208. static unsigned long __init unflatten_dt_node(unsigned long mem,
  209. unsigned long *p,
  210. struct device_node *dad,
  211. struct device_node ***allnextpp,
  212. unsigned long fpsize)
  213. {
  214. struct device_node *np;
  215. struct property *pp, **prev_pp = NULL;
  216. char *pathp;
  217. u32 tag;
  218. unsigned int l, allocl;
  219. int has_name = 0;
  220. int new_format = 0;
  221. tag = *((u32 *)(*p));
  222. if (tag != OF_DT_BEGIN_NODE) {
  223. printk("Weird tag at start of node: %x\n", tag);
  224. return mem;
  225. }
  226. *p += 4;
  227. pathp = (char *)*p;
  228. l = allocl = strlen(pathp) + 1;
  229. *p = _ALIGN(*p + l, 4);
  230. /* version 0x10 has a more compact unit name here instead of the full
  231. * path. we accumulate the full path size using "fpsize", we'll rebuild
  232. * it later. We detect this because the first character of the name is
  233. * not '/'.
  234. */
  235. if ((*pathp) != '/') {
  236. new_format = 1;
  237. if (fpsize == 0) {
  238. /* root node: special case. fpsize accounts for path
  239. * plus terminating zero. root node only has '/', so
  240. * fpsize should be 2, but we want to avoid the first
  241. * level nodes to have two '/' so we use fpsize 1 here
  242. */
  243. fpsize = 1;
  244. allocl = 2;
  245. } else {
  246. /* account for '/' and path size minus terminal 0
  247. * already in 'l'
  248. */
  249. fpsize += l;
  250. allocl = fpsize;
  251. }
  252. }
  253. np = unflatten_dt_alloc(&mem, sizeof(struct device_node) + allocl,
  254. __alignof__(struct device_node));
  255. if (allnextpp) {
  256. memset(np, 0, sizeof(*np));
  257. np->full_name = ((char*)np) + sizeof(struct device_node);
  258. if (new_format) {
  259. char *p = np->full_name;
  260. /* rebuild full path for new format */
  261. if (dad && dad->parent) {
  262. strcpy(p, dad->full_name);
  263. #ifdef DEBUG
  264. if ((strlen(p) + l + 1) != allocl) {
  265. DBG("%s: p: %d, l: %d, a: %d\n",
  266. pathp, (int)strlen(p), l, allocl);
  267. }
  268. #endif
  269. p += strlen(p);
  270. }
  271. *(p++) = '/';
  272. memcpy(p, pathp, l);
  273. } else
  274. memcpy(np->full_name, pathp, l);
  275. prev_pp = &np->properties;
  276. **allnextpp = np;
  277. *allnextpp = &np->allnext;
  278. if (dad != NULL) {
  279. np->parent = dad;
  280. /* we temporarily use the next field as `last_child'*/
  281. if (dad->next == 0)
  282. dad->child = np;
  283. else
  284. dad->next->sibling = np;
  285. dad->next = np;
  286. }
  287. kref_init(&np->kref);
  288. }
  289. while(1) {
  290. u32 sz, noff;
  291. char *pname;
  292. tag = *((u32 *)(*p));
  293. if (tag == OF_DT_NOP) {
  294. *p += 4;
  295. continue;
  296. }
  297. if (tag != OF_DT_PROP)
  298. break;
  299. *p += 4;
  300. sz = *((u32 *)(*p));
  301. noff = *((u32 *)((*p) + 4));
  302. *p += 8;
  303. if (initial_boot_params->version < 0x10)
  304. *p = _ALIGN(*p, sz >= 8 ? 8 : 4);
  305. pname = find_flat_dt_string(noff);
  306. if (pname == NULL) {
  307. printk("Can't find property name in list !\n");
  308. break;
  309. }
  310. if (strcmp(pname, "name") == 0)
  311. has_name = 1;
  312. l = strlen(pname) + 1;
  313. pp = unflatten_dt_alloc(&mem, sizeof(struct property),
  314. __alignof__(struct property));
  315. if (allnextpp) {
  316. if (strcmp(pname, "linux,phandle") == 0) {
  317. np->node = *((u32 *)*p);
  318. if (np->linux_phandle == 0)
  319. np->linux_phandle = np->node;
  320. }
  321. if (strcmp(pname, "ibm,phandle") == 0)
  322. np->linux_phandle = *((u32 *)*p);
  323. pp->name = pname;
  324. pp->length = sz;
  325. pp->value = (void *)*p;
  326. *prev_pp = pp;
  327. prev_pp = &pp->next;
  328. }
  329. *p = _ALIGN((*p) + sz, 4);
  330. }
  331. /* with version 0x10 we may not have the name property, recreate
  332. * it here from the unit name if absent
  333. */
  334. if (!has_name) {
  335. char *p = pathp, *ps = pathp, *pa = NULL;
  336. int sz;
  337. while (*p) {
  338. if ((*p) == '@')
  339. pa = p;
  340. if ((*p) == '/')
  341. ps = p + 1;
  342. p++;
  343. }
  344. if (pa < ps)
  345. pa = p;
  346. sz = (pa - ps) + 1;
  347. pp = unflatten_dt_alloc(&mem, sizeof(struct property) + sz,
  348. __alignof__(struct property));
  349. if (allnextpp) {
  350. pp->name = "name";
  351. pp->length = sz;
  352. pp->value = pp + 1;
  353. *prev_pp = pp;
  354. prev_pp = &pp->next;
  355. memcpy(pp->value, ps, sz - 1);
  356. ((char *)pp->value)[sz - 1] = 0;
  357. DBG("fixed up name for %s -> %s\n", pathp,
  358. (char *)pp->value);
  359. }
  360. }
  361. if (allnextpp) {
  362. *prev_pp = NULL;
  363. np->name = of_get_property(np, "name", NULL);
  364. np->type = of_get_property(np, "device_type", NULL);
  365. if (!np->name)
  366. np->name = "<NULL>";
  367. if (!np->type)
  368. np->type = "<NULL>";
  369. }
  370. while (tag == OF_DT_BEGIN_NODE) {
  371. mem = unflatten_dt_node(mem, p, np, allnextpp, fpsize);
  372. tag = *((u32 *)(*p));
  373. }
  374. if (tag != OF_DT_END_NODE) {
  375. printk("Weird tag at end of node: %x\n", tag);
  376. return mem;
  377. }
  378. *p += 4;
  379. return mem;
  380. }
  381. static int __init early_parse_mem(char *p)
  382. {
  383. if (!p)
  384. return 1;
  385. memory_limit = PAGE_ALIGN(memparse(p, &p));
  386. DBG("memory limit = 0x%lx\n", memory_limit);
  387. return 0;
  388. }
  389. early_param("mem", early_parse_mem);
  390. /**
  391. * move_device_tree - move tree to an unused area, if needed.
  392. *
  393. * The device tree may be allocated beyond our memory limit, or inside the
  394. * crash kernel region for kdump. If so, move it out of the way.
  395. */
  396. static void move_device_tree(void)
  397. {
  398. unsigned long start, size;
  399. void *p;
  400. DBG("-> move_device_tree\n");
  401. start = __pa(initial_boot_params);
  402. size = initial_boot_params->totalsize;
  403. if ((memory_limit && (start + size) > memory_limit) ||
  404. overlaps_crashkernel(start, size)) {
  405. p = __va(lmb_alloc_base(size, PAGE_SIZE, lmb.rmo_size));
  406. memcpy(p, initial_boot_params, size);
  407. initial_boot_params = (struct boot_param_header *)p;
  408. DBG("Moved device tree to 0x%p\n", p);
  409. }
  410. DBG("<- move_device_tree\n");
  411. }
  412. /**
  413. * unflattens the device-tree passed by the firmware, creating the
  414. * tree of struct device_node. It also fills the "name" and "type"
  415. * pointers of the nodes so the normal device-tree walking functions
  416. * can be used (this used to be done by finish_device_tree)
  417. */
  418. void __init unflatten_device_tree(void)
  419. {
  420. unsigned long start, mem, size;
  421. struct device_node **allnextp = &allnodes;
  422. DBG(" -> unflatten_device_tree()\n");
  423. /* First pass, scan for size */
  424. start = ((unsigned long)initial_boot_params) +
  425. initial_boot_params->off_dt_struct;
  426. size = unflatten_dt_node(0, &start, NULL, NULL, 0);
  427. size = (size | 3) + 1;
  428. DBG(" size is %lx, allocating...\n", size);
  429. /* Allocate memory for the expanded device tree */
  430. mem = lmb_alloc(size + 4, __alignof__(struct device_node));
  431. mem = (unsigned long) __va(mem);
  432. ((u32 *)mem)[size / 4] = 0xdeadbeef;
  433. DBG(" unflattening %lx...\n", mem);
  434. /* Second pass, do actual unflattening */
  435. start = ((unsigned long)initial_boot_params) +
  436. initial_boot_params->off_dt_struct;
  437. unflatten_dt_node(mem, &start, NULL, &allnextp, 0);
  438. if (*((u32 *)start) != OF_DT_END)
  439. printk(KERN_WARNING "Weird tag at end of tree: %08x\n", *((u32 *)start));
  440. if (((u32 *)mem)[size / 4] != 0xdeadbeef)
  441. printk(KERN_WARNING "End of tree marker overwritten: %08x\n",
  442. ((u32 *)mem)[size / 4] );
  443. *allnextp = NULL;
  444. /* Get pointer to OF "/chosen" node for use everywhere */
  445. of_chosen = of_find_node_by_path("/chosen");
  446. if (of_chosen == NULL)
  447. of_chosen = of_find_node_by_path("/chosen@0");
  448. DBG(" <- unflatten_device_tree()\n");
  449. }
  450. /*
  451. * ibm,pa-features is a per-cpu property that contains a string of
  452. * attribute descriptors, each of which has a 2 byte header plus up
  453. * to 254 bytes worth of processor attribute bits. First header
  454. * byte specifies the number of bytes following the header.
  455. * Second header byte is an "attribute-specifier" type, of which
  456. * zero is the only currently-defined value.
  457. * Implementation: Pass in the byte and bit offset for the feature
  458. * that we are interested in. The function will return -1 if the
  459. * pa-features property is missing, or a 1/0 to indicate if the feature
  460. * is supported/not supported. Note that the bit numbers are
  461. * big-endian to match the definition in PAPR.
  462. */
  463. static struct ibm_pa_feature {
  464. unsigned long cpu_features; /* CPU_FTR_xxx bit */
  465. unsigned int cpu_user_ftrs; /* PPC_FEATURE_xxx bit */
  466. unsigned char pabyte; /* byte number in ibm,pa-features */
  467. unsigned char pabit; /* bit number (big-endian) */
  468. unsigned char invert; /* if 1, pa bit set => clear feature */
  469. } ibm_pa_features[] __initdata = {
  470. {0, PPC_FEATURE_HAS_MMU, 0, 0, 0},
  471. {0, PPC_FEATURE_HAS_FPU, 0, 1, 0},
  472. {CPU_FTR_SLB, 0, 0, 2, 0},
  473. {CPU_FTR_CTRL, 0, 0, 3, 0},
  474. {CPU_FTR_NOEXECUTE, 0, 0, 6, 0},
  475. {CPU_FTR_NODSISRALIGN, 0, 1, 1, 1},
  476. #if 0
  477. /* put this back once we know how to test if firmware does 64k IO */
  478. {CPU_FTR_CI_LARGE_PAGE, 0, 1, 2, 0},
  479. #endif
  480. {CPU_FTR_REAL_LE, PPC_FEATURE_TRUE_LE, 5, 0, 0},
  481. };
  482. static void __init scan_features(unsigned long node, unsigned char *ftrs,
  483. unsigned long tablelen,
  484. struct ibm_pa_feature *fp,
  485. unsigned long ft_size)
  486. {
  487. unsigned long i, len, bit;
  488. /* find descriptor with type == 0 */
  489. for (;;) {
  490. if (tablelen < 3)
  491. return;
  492. len = 2 + ftrs[0];
  493. if (tablelen < len)
  494. return; /* descriptor 0 not found */
  495. if (ftrs[1] == 0)
  496. break;
  497. tablelen -= len;
  498. ftrs += len;
  499. }
  500. /* loop over bits we know about */
  501. for (i = 0; i < ft_size; ++i, ++fp) {
  502. if (fp->pabyte >= ftrs[0])
  503. continue;
  504. bit = (ftrs[2 + fp->pabyte] >> (7 - fp->pabit)) & 1;
  505. if (bit ^ fp->invert) {
  506. cur_cpu_spec->cpu_features |= fp->cpu_features;
  507. cur_cpu_spec->cpu_user_features |= fp->cpu_user_ftrs;
  508. } else {
  509. cur_cpu_spec->cpu_features &= ~fp->cpu_features;
  510. cur_cpu_spec->cpu_user_features &= ~fp->cpu_user_ftrs;
  511. }
  512. }
  513. }
  514. static void __init check_cpu_pa_features(unsigned long node)
  515. {
  516. unsigned char *pa_ftrs;
  517. unsigned long tablelen;
  518. pa_ftrs = of_get_flat_dt_prop(node, "ibm,pa-features", &tablelen);
  519. if (pa_ftrs == NULL)
  520. return;
  521. scan_features(node, pa_ftrs, tablelen,
  522. ibm_pa_features, ARRAY_SIZE(ibm_pa_features));
  523. }
  524. static struct feature_property {
  525. const char *name;
  526. u32 min_value;
  527. unsigned long cpu_feature;
  528. unsigned long cpu_user_ftr;
  529. } feature_properties[] __initdata = {
  530. #ifdef CONFIG_ALTIVEC
  531. {"altivec", 0, CPU_FTR_ALTIVEC, PPC_FEATURE_HAS_ALTIVEC},
  532. {"ibm,vmx", 1, CPU_FTR_ALTIVEC, PPC_FEATURE_HAS_ALTIVEC},
  533. #endif /* CONFIG_ALTIVEC */
  534. #ifdef CONFIG_PPC64
  535. {"ibm,dfp", 1, 0, PPC_FEATURE_HAS_DFP},
  536. {"ibm,purr", 1, CPU_FTR_PURR, 0},
  537. {"ibm,spurr", 1, CPU_FTR_SPURR, 0},
  538. #endif /* CONFIG_PPC64 */
  539. };
  540. static void __init check_cpu_feature_properties(unsigned long node)
  541. {
  542. unsigned long i;
  543. struct feature_property *fp = feature_properties;
  544. const u32 *prop;
  545. for (i = 0; i < ARRAY_SIZE(feature_properties); ++i, ++fp) {
  546. prop = of_get_flat_dt_prop(node, fp->name, NULL);
  547. if (prop && *prop >= fp->min_value) {
  548. cur_cpu_spec->cpu_features |= fp->cpu_feature;
  549. cur_cpu_spec->cpu_user_features |= fp->cpu_user_ftr;
  550. }
  551. }
  552. }
  553. static int __init early_init_dt_scan_cpus(unsigned long node,
  554. const char *uname, int depth,
  555. void *data)
  556. {
  557. static int logical_cpuid = 0;
  558. char *type = of_get_flat_dt_prop(node, "device_type", NULL);
  559. const u32 *prop;
  560. const u32 *intserv;
  561. int i, nthreads;
  562. unsigned long len;
  563. int found = 0;
  564. /* We are scanning "cpu" nodes only */
  565. if (type == NULL || strcmp(type, "cpu") != 0)
  566. return 0;
  567. /* Get physical cpuid */
  568. intserv = of_get_flat_dt_prop(node, "ibm,ppc-interrupt-server#s", &len);
  569. if (intserv) {
  570. nthreads = len / sizeof(int);
  571. } else {
  572. intserv = of_get_flat_dt_prop(node, "reg", NULL);
  573. nthreads = 1;
  574. }
  575. /*
  576. * Now see if any of these threads match our boot cpu.
  577. * NOTE: This must match the parsing done in smp_setup_cpu_maps.
  578. */
  579. for (i = 0; i < nthreads; i++) {
  580. /*
  581. * version 2 of the kexec param format adds the phys cpuid of
  582. * booted proc.
  583. */
  584. if (initial_boot_params && initial_boot_params->version >= 2) {
  585. if (intserv[i] ==
  586. initial_boot_params->boot_cpuid_phys) {
  587. found = 1;
  588. break;
  589. }
  590. } else {
  591. /*
  592. * Check if it's the boot-cpu, set it's hw index now,
  593. * unfortunately this format did not support booting
  594. * off secondary threads.
  595. */
  596. if (of_get_flat_dt_prop(node,
  597. "linux,boot-cpu", NULL) != NULL) {
  598. found = 1;
  599. break;
  600. }
  601. }
  602. #ifdef CONFIG_SMP
  603. /* logical cpu id is always 0 on UP kernels */
  604. logical_cpuid++;
  605. #endif
  606. }
  607. if (found) {
  608. DBG("boot cpu: logical %d physical %d\n", logical_cpuid,
  609. intserv[i]);
  610. boot_cpuid = logical_cpuid;
  611. set_hard_smp_processor_id(boot_cpuid, intserv[i]);
  612. /*
  613. * PAPR defines "logical" PVR values for cpus that
  614. * meet various levels of the architecture:
  615. * 0x0f000001 Architecture version 2.04
  616. * 0x0f000002 Architecture version 2.05
  617. * If the cpu-version property in the cpu node contains
  618. * such a value, we call identify_cpu again with the
  619. * logical PVR value in order to use the cpu feature
  620. * bits appropriate for the architecture level.
  621. *
  622. * A POWER6 partition in "POWER6 architected" mode
  623. * uses the 0x0f000002 PVR value; in POWER5+ mode
  624. * it uses 0x0f000001.
  625. */
  626. prop = of_get_flat_dt_prop(node, "cpu-version", NULL);
  627. if (prop && (*prop & 0xff000000) == 0x0f000000)
  628. identify_cpu(0, *prop);
  629. }
  630. check_cpu_feature_properties(node);
  631. check_cpu_pa_features(node);
  632. #ifdef CONFIG_PPC_PSERIES
  633. if (nthreads > 1)
  634. cur_cpu_spec->cpu_features |= CPU_FTR_SMT;
  635. else
  636. cur_cpu_spec->cpu_features &= ~CPU_FTR_SMT;
  637. #endif
  638. return 0;
  639. }
  640. #ifdef CONFIG_BLK_DEV_INITRD
  641. static void __init early_init_dt_check_for_initrd(unsigned long node)
  642. {
  643. unsigned long l;
  644. u32 *prop;
  645. DBG("Looking for initrd properties... ");
  646. prop = of_get_flat_dt_prop(node, "linux,initrd-start", &l);
  647. if (prop) {
  648. initrd_start = (unsigned long)__va(of_read_ulong(prop, l/4));
  649. prop = of_get_flat_dt_prop(node, "linux,initrd-end", &l);
  650. if (prop) {
  651. initrd_end = (unsigned long)
  652. __va(of_read_ulong(prop, l/4));
  653. initrd_below_start_ok = 1;
  654. } else {
  655. initrd_start = 0;
  656. }
  657. }
  658. DBG("initrd_start=0x%lx initrd_end=0x%lx\n", initrd_start, initrd_end);
  659. }
  660. #else
  661. static inline void early_init_dt_check_for_initrd(unsigned long node)
  662. {
  663. }
  664. #endif /* CONFIG_BLK_DEV_INITRD */
  665. static int __init early_init_dt_scan_chosen(unsigned long node,
  666. const char *uname, int depth, void *data)
  667. {
  668. unsigned long *lprop;
  669. unsigned long l;
  670. char *p;
  671. DBG("search \"chosen\", depth: %d, uname: %s\n", depth, uname);
  672. if (depth != 1 ||
  673. (strcmp(uname, "chosen") != 0 && strcmp(uname, "chosen@0") != 0))
  674. return 0;
  675. #ifdef CONFIG_PPC64
  676. /* check if iommu is forced on or off */
  677. if (of_get_flat_dt_prop(node, "linux,iommu-off", NULL) != NULL)
  678. iommu_is_off = 1;
  679. if (of_get_flat_dt_prop(node, "linux,iommu-force-on", NULL) != NULL)
  680. iommu_force_on = 1;
  681. #endif
  682. /* mem=x on the command line is the preferred mechanism */
  683. lprop = of_get_flat_dt_prop(node, "linux,memory-limit", NULL);
  684. if (lprop)
  685. memory_limit = *lprop;
  686. #ifdef CONFIG_PPC64
  687. lprop = of_get_flat_dt_prop(node, "linux,tce-alloc-start", NULL);
  688. if (lprop)
  689. tce_alloc_start = *lprop;
  690. lprop = of_get_flat_dt_prop(node, "linux,tce-alloc-end", NULL);
  691. if (lprop)
  692. tce_alloc_end = *lprop;
  693. #endif
  694. #ifdef CONFIG_KEXEC
  695. lprop = (u64*)of_get_flat_dt_prop(node, "linux,crashkernel-base", NULL);
  696. if (lprop)
  697. crashk_res.start = *lprop;
  698. lprop = (u64*)of_get_flat_dt_prop(node, "linux,crashkernel-size", NULL);
  699. if (lprop)
  700. crashk_res.end = crashk_res.start + *lprop - 1;
  701. #endif
  702. early_init_dt_check_for_initrd(node);
  703. /* Retreive command line */
  704. p = of_get_flat_dt_prop(node, "bootargs", &l);
  705. if (p != NULL && l > 0)
  706. strlcpy(cmd_line, p, min((int)l, COMMAND_LINE_SIZE));
  707. #ifdef CONFIG_CMDLINE
  708. if (p == NULL || l == 0 || (l == 1 && (*p) == 0))
  709. strlcpy(cmd_line, CONFIG_CMDLINE, COMMAND_LINE_SIZE);
  710. #endif /* CONFIG_CMDLINE */
  711. DBG("Command line is: %s\n", cmd_line);
  712. /* break now */
  713. return 1;
  714. }
  715. static int __init early_init_dt_scan_root(unsigned long node,
  716. const char *uname, int depth, void *data)
  717. {
  718. u32 *prop;
  719. if (depth != 0)
  720. return 0;
  721. prop = of_get_flat_dt_prop(node, "#size-cells", NULL);
  722. dt_root_size_cells = (prop == NULL) ? 1 : *prop;
  723. DBG("dt_root_size_cells = %x\n", dt_root_size_cells);
  724. prop = of_get_flat_dt_prop(node, "#address-cells", NULL);
  725. dt_root_addr_cells = (prop == NULL) ? 2 : *prop;
  726. DBG("dt_root_addr_cells = %x\n", dt_root_addr_cells);
  727. /* break now */
  728. return 1;
  729. }
  730. static unsigned long __init dt_mem_next_cell(int s, cell_t **cellp)
  731. {
  732. cell_t *p = *cellp;
  733. *cellp = p + s;
  734. return of_read_ulong(p, s);
  735. }
  736. #ifdef CONFIG_PPC_PSERIES
  737. /*
  738. * Interpret the ibm,dynamic-memory property in the
  739. * /ibm,dynamic-reconfiguration-memory node.
  740. * This contains a list of memory blocks along with NUMA affinity
  741. * information.
  742. */
  743. static int __init early_init_dt_scan_drconf_memory(unsigned long node)
  744. {
  745. cell_t *dm, *ls;
  746. unsigned long l, n;
  747. unsigned long base, size, lmb_size, flags;
  748. ls = (cell_t *)of_get_flat_dt_prop(node, "ibm,lmb-size", &l);
  749. if (ls == NULL || l < dt_root_size_cells * sizeof(cell_t))
  750. return 0;
  751. lmb_size = dt_mem_next_cell(dt_root_size_cells, &ls);
  752. dm = (cell_t *)of_get_flat_dt_prop(node, "ibm,dynamic-memory", &l);
  753. if (dm == NULL || l < sizeof(cell_t))
  754. return 0;
  755. n = *dm++; /* number of entries */
  756. if (l < (n * (dt_root_addr_cells + 4) + 1) * sizeof(cell_t))
  757. return 0;
  758. for (; n != 0; --n) {
  759. base = dt_mem_next_cell(dt_root_addr_cells, &dm);
  760. flags = dm[3];
  761. /* skip DRC index, pad, assoc. list index, flags */
  762. dm += 4;
  763. /* skip this block if the reserved bit is set in flags (0x80)
  764. or if the block is not assigned to this partition (0x8) */
  765. if ((flags & 0x80) || !(flags & 0x8))
  766. continue;
  767. size = lmb_size;
  768. if (iommu_is_off) {
  769. if (base >= 0x80000000ul)
  770. continue;
  771. if ((base + size) > 0x80000000ul)
  772. size = 0x80000000ul - base;
  773. }
  774. lmb_add(base, size);
  775. }
  776. lmb_dump_all();
  777. return 0;
  778. }
  779. #else
  780. #define early_init_dt_scan_drconf_memory(node) 0
  781. #endif /* CONFIG_PPC_PSERIES */
  782. static int __init early_init_dt_scan_memory(unsigned long node,
  783. const char *uname, int depth, void *data)
  784. {
  785. char *type = of_get_flat_dt_prop(node, "device_type", NULL);
  786. cell_t *reg, *endp;
  787. unsigned long l;
  788. /* Look for the ibm,dynamic-reconfiguration-memory node */
  789. if (depth == 1 &&
  790. strcmp(uname, "ibm,dynamic-reconfiguration-memory") == 0)
  791. return early_init_dt_scan_drconf_memory(node);
  792. /* We are scanning "memory" nodes only */
  793. if (type == NULL) {
  794. /*
  795. * The longtrail doesn't have a device_type on the
  796. * /memory node, so look for the node called /memory@0.
  797. */
  798. if (depth != 1 || strcmp(uname, "memory@0") != 0)
  799. return 0;
  800. } else if (strcmp(type, "memory") != 0)
  801. return 0;
  802. reg = (cell_t *)of_get_flat_dt_prop(node, "linux,usable-memory", &l);
  803. if (reg == NULL)
  804. reg = (cell_t *)of_get_flat_dt_prop(node, "reg", &l);
  805. if (reg == NULL)
  806. return 0;
  807. endp = reg + (l / sizeof(cell_t));
  808. DBG("memory scan node %s, reg size %ld, data: %x %x %x %x,\n",
  809. uname, l, reg[0], reg[1], reg[2], reg[3]);
  810. while ((endp - reg) >= (dt_root_addr_cells + dt_root_size_cells)) {
  811. unsigned long base, size;
  812. base = dt_mem_next_cell(dt_root_addr_cells, &reg);
  813. size = dt_mem_next_cell(dt_root_size_cells, &reg);
  814. if (size == 0)
  815. continue;
  816. DBG(" - %lx , %lx\n", base, size);
  817. #ifdef CONFIG_PPC64
  818. if (iommu_is_off) {
  819. if (base >= 0x80000000ul)
  820. continue;
  821. if ((base + size) > 0x80000000ul)
  822. size = 0x80000000ul - base;
  823. }
  824. #endif
  825. lmb_add(base, size);
  826. }
  827. return 0;
  828. }
  829. static void __init early_reserve_mem(void)
  830. {
  831. u64 base, size;
  832. u64 *reserve_map;
  833. unsigned long self_base;
  834. unsigned long self_size;
  835. reserve_map = (u64 *)(((unsigned long)initial_boot_params) +
  836. initial_boot_params->off_mem_rsvmap);
  837. /* before we do anything, lets reserve the dt blob */
  838. self_base = __pa((unsigned long)initial_boot_params);
  839. self_size = initial_boot_params->totalsize;
  840. lmb_reserve(self_base, self_size);
  841. #ifdef CONFIG_BLK_DEV_INITRD
  842. /* then reserve the initrd, if any */
  843. if (initrd_start && (initrd_end > initrd_start))
  844. lmb_reserve(__pa(initrd_start), initrd_end - initrd_start);
  845. #endif /* CONFIG_BLK_DEV_INITRD */
  846. #ifdef CONFIG_PPC32
  847. /*
  848. * Handle the case where we might be booting from an old kexec
  849. * image that setup the mem_rsvmap as pairs of 32-bit values
  850. */
  851. if (*reserve_map > 0xffffffffull) {
  852. u32 base_32, size_32;
  853. u32 *reserve_map_32 = (u32 *)reserve_map;
  854. while (1) {
  855. base_32 = *(reserve_map_32++);
  856. size_32 = *(reserve_map_32++);
  857. if (size_32 == 0)
  858. break;
  859. /* skip if the reservation is for the blob */
  860. if (base_32 == self_base && size_32 == self_size)
  861. continue;
  862. DBG("reserving: %x -> %x\n", base_32, size_32);
  863. lmb_reserve(base_32, size_32);
  864. }
  865. return;
  866. }
  867. #endif
  868. while (1) {
  869. base = *(reserve_map++);
  870. size = *(reserve_map++);
  871. if (size == 0)
  872. break;
  873. DBG("reserving: %llx -> %llx\n", base, size);
  874. lmb_reserve(base, size);
  875. }
  876. #if 0
  877. DBG("memory reserved, lmbs :\n");
  878. lmb_dump_all();
  879. #endif
  880. }
  881. void __init early_init_devtree(void *params)
  882. {
  883. DBG(" -> early_init_devtree(%p)\n", params);
  884. /* Setup flat device-tree pointer */
  885. initial_boot_params = params;
  886. #ifdef CONFIG_PPC_RTAS
  887. /* Some machines might need RTAS info for debugging, grab it now. */
  888. of_scan_flat_dt(early_init_dt_scan_rtas, NULL);
  889. #endif
  890. /* Retrieve various informations from the /chosen node of the
  891. * device-tree, including the platform type, initrd location and
  892. * size, TCE reserve, and more ...
  893. */
  894. of_scan_flat_dt(early_init_dt_scan_chosen, NULL);
  895. /* Scan memory nodes and rebuild LMBs */
  896. lmb_init();
  897. of_scan_flat_dt(early_init_dt_scan_root, NULL);
  898. of_scan_flat_dt(early_init_dt_scan_memory, NULL);
  899. /* Save command line for /proc/cmdline and then parse parameters */
  900. strlcpy(boot_command_line, cmd_line, COMMAND_LINE_SIZE);
  901. parse_early_param();
  902. /* Reserve LMB regions used by kernel, initrd, dt, etc... */
  903. lmb_reserve(PHYSICAL_START, __pa(klimit) - PHYSICAL_START);
  904. reserve_kdump_trampoline();
  905. reserve_crashkernel();
  906. early_reserve_mem();
  907. lmb_enforce_memory_limit(memory_limit);
  908. lmb_analyze();
  909. DBG("Phys. mem: %lx\n", lmb_phys_mem_size());
  910. /* We may need to relocate the flat tree, do it now.
  911. * FIXME .. and the initrd too? */
  912. move_device_tree();
  913. DBG("Scanning CPUs ...\n");
  914. /* Retreive CPU related informations from the flat tree
  915. * (altivec support, boot CPU ID, ...)
  916. */
  917. of_scan_flat_dt(early_init_dt_scan_cpus, NULL);
  918. DBG(" <- early_init_devtree()\n");
  919. }
  920. /**
  921. * Indicates whether the root node has a given value in its
  922. * compatible property.
  923. */
  924. int machine_is_compatible(const char *compat)
  925. {
  926. struct device_node *root;
  927. int rc = 0;
  928. root = of_find_node_by_path("/");
  929. if (root) {
  930. rc = of_device_is_compatible(root, compat);
  931. of_node_put(root);
  932. }
  933. return rc;
  934. }
  935. EXPORT_SYMBOL(machine_is_compatible);
  936. /*******
  937. *
  938. * New implementation of the OF "find" APIs, return a refcounted
  939. * object, call of_node_put() when done. The device tree and list
  940. * are protected by a rw_lock.
  941. *
  942. * Note that property management will need some locking as well,
  943. * this isn't dealt with yet.
  944. *
  945. *******/
  946. /**
  947. * of_find_node_by_phandle - Find a node given a phandle
  948. * @handle: phandle of the node to find
  949. *
  950. * Returns a node pointer with refcount incremented, use
  951. * of_node_put() on it when done.
  952. */
  953. struct device_node *of_find_node_by_phandle(phandle handle)
  954. {
  955. struct device_node *np;
  956. read_lock(&devtree_lock);
  957. for (np = allnodes; np != 0; np = np->allnext)
  958. if (np->linux_phandle == handle)
  959. break;
  960. of_node_get(np);
  961. read_unlock(&devtree_lock);
  962. return np;
  963. }
  964. EXPORT_SYMBOL(of_find_node_by_phandle);
  965. /**
  966. * of_find_all_nodes - Get next node in global list
  967. * @prev: Previous node or NULL to start iteration
  968. * of_node_put() will be called on it
  969. *
  970. * Returns a node pointer with refcount incremented, use
  971. * of_node_put() on it when done.
  972. */
  973. struct device_node *of_find_all_nodes(struct device_node *prev)
  974. {
  975. struct device_node *np;
  976. read_lock(&devtree_lock);
  977. np = prev ? prev->allnext : allnodes;
  978. for (; np != 0; np = np->allnext)
  979. if (of_node_get(np))
  980. break;
  981. of_node_put(prev);
  982. read_unlock(&devtree_lock);
  983. return np;
  984. }
  985. EXPORT_SYMBOL(of_find_all_nodes);
  986. /**
  987. * of_node_get - Increment refcount of a node
  988. * @node: Node to inc refcount, NULL is supported to
  989. * simplify writing of callers
  990. *
  991. * Returns node.
  992. */
  993. struct device_node *of_node_get(struct device_node *node)
  994. {
  995. if (node)
  996. kref_get(&node->kref);
  997. return node;
  998. }
  999. EXPORT_SYMBOL(of_node_get);
  1000. static inline struct device_node * kref_to_device_node(struct kref *kref)
  1001. {
  1002. return container_of(kref, struct device_node, kref);
  1003. }
  1004. /**
  1005. * of_node_release - release a dynamically allocated node
  1006. * @kref: kref element of the node to be released
  1007. *
  1008. * In of_node_put() this function is passed to kref_put()
  1009. * as the destructor.
  1010. */
  1011. static void of_node_release(struct kref *kref)
  1012. {
  1013. struct device_node *node = kref_to_device_node(kref);
  1014. struct property *prop = node->properties;
  1015. /* We should never be releasing nodes that haven't been detached. */
  1016. if (!of_node_check_flag(node, OF_DETACHED)) {
  1017. printk("WARNING: Bad of_node_put() on %s\n", node->full_name);
  1018. dump_stack();
  1019. kref_init(&node->kref);
  1020. return;
  1021. }
  1022. if (!of_node_check_flag(node, OF_DYNAMIC))
  1023. return;
  1024. while (prop) {
  1025. struct property *next = prop->next;
  1026. kfree(prop->name);
  1027. kfree(prop->value);
  1028. kfree(prop);
  1029. prop = next;
  1030. if (!prop) {
  1031. prop = node->deadprops;
  1032. node->deadprops = NULL;
  1033. }
  1034. }
  1035. kfree(node->full_name);
  1036. kfree(node->data);
  1037. kfree(node);
  1038. }
  1039. /**
  1040. * of_node_put - Decrement refcount of a node
  1041. * @node: Node to dec refcount, NULL is supported to
  1042. * simplify writing of callers
  1043. *
  1044. */
  1045. void of_node_put(struct device_node *node)
  1046. {
  1047. if (node)
  1048. kref_put(&node->kref, of_node_release);
  1049. }
  1050. EXPORT_SYMBOL(of_node_put);
  1051. /*
  1052. * Plug a device node into the tree and global list.
  1053. */
  1054. void of_attach_node(struct device_node *np)
  1055. {
  1056. write_lock(&devtree_lock);
  1057. np->sibling = np->parent->child;
  1058. np->allnext = allnodes;
  1059. np->parent->child = np;
  1060. allnodes = np;
  1061. write_unlock(&devtree_lock);
  1062. }
  1063. /*
  1064. * "Unplug" a node from the device tree. The caller must hold
  1065. * a reference to the node. The memory associated with the node
  1066. * is not freed until its refcount goes to zero.
  1067. */
  1068. void of_detach_node(struct device_node *np)
  1069. {
  1070. struct device_node *parent;
  1071. write_lock(&devtree_lock);
  1072. parent = np->parent;
  1073. if (!parent)
  1074. goto out_unlock;
  1075. if (allnodes == np)
  1076. allnodes = np->allnext;
  1077. else {
  1078. struct device_node *prev;
  1079. for (prev = allnodes;
  1080. prev->allnext != np;
  1081. prev = prev->allnext)
  1082. ;
  1083. prev->allnext = np->allnext;
  1084. }
  1085. if (parent->child == np)
  1086. parent->child = np->sibling;
  1087. else {
  1088. struct device_node *prevsib;
  1089. for (prevsib = np->parent->child;
  1090. prevsib->sibling != np;
  1091. prevsib = prevsib->sibling)
  1092. ;
  1093. prevsib->sibling = np->sibling;
  1094. }
  1095. of_node_set_flag(np, OF_DETACHED);
  1096. out_unlock:
  1097. write_unlock(&devtree_lock);
  1098. }
  1099. #ifdef CONFIG_PPC_PSERIES
  1100. /*
  1101. * Fix up the uninitialized fields in a new device node:
  1102. * name, type and pci-specific fields
  1103. */
  1104. static int of_finish_dynamic_node(struct device_node *node)
  1105. {
  1106. struct device_node *parent = of_get_parent(node);
  1107. int err = 0;
  1108. const phandle *ibm_phandle;
  1109. node->name = of_get_property(node, "name", NULL);
  1110. node->type = of_get_property(node, "device_type", NULL);
  1111. if (!node->name)
  1112. node->name = "<NULL>";
  1113. if (!node->type)
  1114. node->type = "<NULL>";
  1115. if (!parent) {
  1116. err = -ENODEV;
  1117. goto out;
  1118. }
  1119. /* We don't support that function on PowerMac, at least
  1120. * not yet
  1121. */
  1122. if (machine_is(powermac))
  1123. return -ENODEV;
  1124. /* fix up new node's linux_phandle field */
  1125. if ((ibm_phandle = of_get_property(node, "ibm,phandle", NULL)))
  1126. node->linux_phandle = *ibm_phandle;
  1127. out:
  1128. of_node_put(parent);
  1129. return err;
  1130. }
  1131. static int prom_reconfig_notifier(struct notifier_block *nb,
  1132. unsigned long action, void *node)
  1133. {
  1134. int err;
  1135. switch (action) {
  1136. case PSERIES_RECONFIG_ADD:
  1137. err = of_finish_dynamic_node(node);
  1138. if (err < 0) {
  1139. printk(KERN_ERR "finish_node returned %d\n", err);
  1140. err = NOTIFY_BAD;
  1141. }
  1142. break;
  1143. default:
  1144. err = NOTIFY_DONE;
  1145. break;
  1146. }
  1147. return err;
  1148. }
  1149. static struct notifier_block prom_reconfig_nb = {
  1150. .notifier_call = prom_reconfig_notifier,
  1151. .priority = 10, /* This one needs to run first */
  1152. };
  1153. static int __init prom_reconfig_setup(void)
  1154. {
  1155. return pSeries_reconfig_notifier_register(&prom_reconfig_nb);
  1156. }
  1157. __initcall(prom_reconfig_setup);
  1158. #endif
  1159. /*
  1160. * Add a property to a node
  1161. */
  1162. int prom_add_property(struct device_node* np, struct property* prop)
  1163. {
  1164. struct property **next;
  1165. prop->next = NULL;
  1166. write_lock(&devtree_lock);
  1167. next = &np->properties;
  1168. while (*next) {
  1169. if (strcmp(prop->name, (*next)->name) == 0) {
  1170. /* duplicate ! don't insert it */
  1171. write_unlock(&devtree_lock);
  1172. return -1;
  1173. }
  1174. next = &(*next)->next;
  1175. }
  1176. *next = prop;
  1177. write_unlock(&devtree_lock);
  1178. #ifdef CONFIG_PROC_DEVICETREE
  1179. /* try to add to proc as well if it was initialized */
  1180. if (np->pde)
  1181. proc_device_tree_add_prop(np->pde, prop);
  1182. #endif /* CONFIG_PROC_DEVICETREE */
  1183. return 0;
  1184. }
  1185. /*
  1186. * Remove a property from a node. Note that we don't actually
  1187. * remove it, since we have given out who-knows-how-many pointers
  1188. * to the data using get-property. Instead we just move the property
  1189. * to the "dead properties" list, so it won't be found any more.
  1190. */
  1191. int prom_remove_property(struct device_node *np, struct property *prop)
  1192. {
  1193. struct property **next;
  1194. int found = 0;
  1195. write_lock(&devtree_lock);
  1196. next = &np->properties;
  1197. while (*next) {
  1198. if (*next == prop) {
  1199. /* found the node */
  1200. *next = prop->next;
  1201. prop->next = np->deadprops;
  1202. np->deadprops = prop;
  1203. found = 1;
  1204. break;
  1205. }
  1206. next = &(*next)->next;
  1207. }
  1208. write_unlock(&devtree_lock);
  1209. if (!found)
  1210. return -ENODEV;
  1211. #ifdef CONFIG_PROC_DEVICETREE
  1212. /* try to remove the proc node as well */
  1213. if (np->pde)
  1214. proc_device_tree_remove_prop(np->pde, prop);
  1215. #endif /* CONFIG_PROC_DEVICETREE */
  1216. return 0;
  1217. }
  1218. /*
  1219. * Update a property in a node. Note that we don't actually
  1220. * remove it, since we have given out who-knows-how-many pointers
  1221. * to the data using get-property. Instead we just move the property
  1222. * to the "dead properties" list, and add the new property to the
  1223. * property list
  1224. */
  1225. int prom_update_property(struct device_node *np,
  1226. struct property *newprop,
  1227. struct property *oldprop)
  1228. {
  1229. struct property **next;
  1230. int found = 0;
  1231. write_lock(&devtree_lock);
  1232. next = &np->properties;
  1233. while (*next) {
  1234. if (*next == oldprop) {
  1235. /* found the node */
  1236. newprop->next = oldprop->next;
  1237. *next = newprop;
  1238. oldprop->next = np->deadprops;
  1239. np->deadprops = oldprop;
  1240. found = 1;
  1241. break;
  1242. }
  1243. next = &(*next)->next;
  1244. }
  1245. write_unlock(&devtree_lock);
  1246. if (!found)
  1247. return -ENODEV;
  1248. #ifdef CONFIG_PROC_DEVICETREE
  1249. /* try to add to proc as well if it was initialized */
  1250. if (np->pde)
  1251. proc_device_tree_update_prop(np->pde, newprop, oldprop);
  1252. #endif /* CONFIG_PROC_DEVICETREE */
  1253. return 0;
  1254. }
  1255. /* Find the device node for a given logical cpu number, also returns the cpu
  1256. * local thread number (index in ibm,interrupt-server#s) if relevant and
  1257. * asked for (non NULL)
  1258. */
  1259. struct device_node *of_get_cpu_node(int cpu, unsigned int *thread)
  1260. {
  1261. int hardid;
  1262. struct device_node *np;
  1263. hardid = get_hard_smp_processor_id(cpu);
  1264. for_each_node_by_type(np, "cpu") {
  1265. const u32 *intserv;
  1266. unsigned int plen, t;
  1267. /* Check for ibm,ppc-interrupt-server#s. If it doesn't exist
  1268. * fallback to "reg" property and assume no threads
  1269. */
  1270. intserv = of_get_property(np, "ibm,ppc-interrupt-server#s",
  1271. &plen);
  1272. if (intserv == NULL) {
  1273. const u32 *reg = of_get_property(np, "reg", NULL);
  1274. if (reg == NULL)
  1275. continue;
  1276. if (*reg == hardid) {
  1277. if (thread)
  1278. *thread = 0;
  1279. return np;
  1280. }
  1281. } else {
  1282. plen /= sizeof(u32);
  1283. for (t = 0; t < plen; t++) {
  1284. if (hardid == intserv[t]) {
  1285. if (thread)
  1286. *thread = t;
  1287. return np;
  1288. }
  1289. }
  1290. }
  1291. }
  1292. return NULL;
  1293. }
  1294. EXPORT_SYMBOL(of_get_cpu_node);
  1295. #if defined(CONFIG_DEBUG_FS) && defined(DEBUG)
  1296. static struct debugfs_blob_wrapper flat_dt_blob;
  1297. static int __init export_flat_device_tree(void)
  1298. {
  1299. struct dentry *d;
  1300. flat_dt_blob.data = initial_boot_params;
  1301. flat_dt_blob.size = initial_boot_params->totalsize;
  1302. d = debugfs_create_blob("flat-device-tree", S_IFREG | S_IRUSR,
  1303. powerpc_debugfs_root, &flat_dt_blob);
  1304. if (!d)
  1305. return 1;
  1306. return 0;
  1307. }
  1308. __initcall(export_flat_device_tree);
  1309. #endif