upgrade to linux 2.6.10-1.12_FC2
[linux-2.6.git] / arch / ppc64 / kernel / iSeries_setup.c
1 /*
2  *    Copyright (c) 2000 Mike Corrigan <mikejc@us.ibm.com>
3  *    Copyright (c) 1999-2000 Grant Erickson <grant@lcse.umn.edu>
4  *
5  *    Module name: iSeries_setup.c
6  *
7  *    Description:
8  *      Architecture- / platform-specific boot-time initialization code for
9  *      the IBM iSeries LPAR.  Adapted from original code by Grant Erickson and
10  *      code by Gary Thomas, Cort Dougan <cort@fsmlabs.com>, and Dan Malek
11  *      <dan@net4x.com>.
12  *
13  *      This program is free software; you can redistribute it and/or
14  *      modify it under the terms of the GNU General Public License
15  *      as published by the Free Software Foundation; either version
16  *      2 of the License, or (at your option) any later version.
17  */
18  
19 #undef DEBUG
20
21 #include <linux/config.h>
22 #include <linux/init.h>
23 #include <linux/threads.h>
24 #include <linux/smp.h>
25 #include <linux/param.h>
26 #include <linux/string.h>
27 #include <linux/bootmem.h>
28 #include <linux/initrd.h>
29 #include <linux/seq_file.h>
30 #include <linux/kdev_t.h>
31 #include <linux/major.h>
32 #include <linux/root_dev.h>
33
34 #include <asm/processor.h>
35 #include <asm/machdep.h>
36 #include <asm/page.h>
37 #include <asm/mmu.h>
38 #include <asm/pgtable.h>
39 #include <asm/mmu_context.h>
40 #include <asm/cputable.h>
41 #include <asm/sections.h>
42
43 #include <asm/time.h>
44 #include "iSeries_setup.h"
45 #include <asm/naca.h>
46 #include <asm/paca.h>
47 #include <asm/sections.h>
48 #include <asm/iSeries/LparData.h>
49 #include <asm/iSeries/HvCallHpt.h>
50 #include <asm/iSeries/HvLpConfig.h>
51 #include <asm/iSeries/HvCallEvent.h>
52 #include <asm/iSeries/HvCallSm.h>
53 #include <asm/iSeries/HvCallXm.h>
54 #include <asm/iSeries/ItLpQueue.h>
55 #include <asm/iSeries/IoHriMainStore.h>
56 #include <asm/iSeries/iSeries_proc.h>
57 #include <asm/iSeries/mf.h>
58 #include <asm/iSeries/HvLpEvent.h>
59
60 extern void hvlog(char *fmt, ...);
61
62 #ifdef DEBUG
63 #define DBG(fmt...) hvlog(fmt)
64 #else
65 #define DBG(fmt...)
66 #endif
67
68 /* Function Prototypes */
69 extern void ppcdbg_initialize(void);
70 extern void tce_init_iSeries(void);
71
72 static void build_iSeries_Memory_Map(void);
73 static void setup_iSeries_cache_sizes(void);
74 static void iSeries_bolt_kernel(unsigned long saddr, unsigned long eaddr);
75 extern void iSeries_setup_arch(void);
76 extern void iSeries_pci_final_fixup(void);
77
78 /* Global Variables */
79 static unsigned long procFreqHz;
80 static unsigned long procFreqMhz;
81 static unsigned long procFreqMhzHundreths;
82
83 static unsigned long tbFreqHz;
84 static unsigned long tbFreqMhz;
85 static unsigned long tbFreqMhzHundreths;
86
87 int piranha_simulator;
88
89 extern int rd_size;             /* Defined in drivers/block/rd.c */
90 extern unsigned long klimit;
91 extern unsigned long embedded_sysmap_start;
92 extern unsigned long embedded_sysmap_end;
93
94 extern unsigned long iSeries_recal_tb;
95 extern unsigned long iSeries_recal_titan;
96
97 static int mf_initialized;
98
99 struct MemoryBlock {
100         unsigned long absStart;
101         unsigned long absEnd;
102         unsigned long logicalStart;
103         unsigned long logicalEnd;
104 };
105
106 /*
107  * Process the main store vpd to determine where the holes in memory are
108  * and return the number of physical blocks and fill in the array of
109  * block data.
110  */
111 unsigned long iSeries_process_Condor_mainstore_vpd(struct MemoryBlock *mb_array,
112                 unsigned long max_entries)
113 {
114         unsigned long holeFirstChunk, holeSizeChunks;
115         unsigned long numMemoryBlocks = 1;
116         struct IoHriMainStoreSegment4 *msVpd =
117                 (struct IoHriMainStoreSegment4 *)xMsVpd;
118         unsigned long holeStart = msVpd->nonInterleavedBlocksStartAdr;
119         unsigned long holeEnd = msVpd->nonInterleavedBlocksEndAdr;
120         unsigned long holeSize = holeEnd - holeStart;
121
122         printk("Mainstore_VPD: Condor\n");
123         /*
124          * Determine if absolute memory has any
125          * holes so that we can interpret the
126          * access map we get back from the hypervisor
127          * correctly.
128          */
129         mb_array[0].logicalStart = 0;
130         mb_array[0].logicalEnd = 0x100000000;
131         mb_array[0].absStart = 0;
132         mb_array[0].absEnd = 0x100000000;
133
134         if (holeSize) {
135                 numMemoryBlocks = 2;
136                 holeStart = holeStart & 0x000fffffffffffff;
137                 holeStart = addr_to_chunk(holeStart);
138                 holeFirstChunk = holeStart;
139                 holeSize = addr_to_chunk(holeSize);
140                 holeSizeChunks = holeSize;
141                 printk( "Main store hole: start chunk = %0lx, size = %0lx chunks\n",
142                                 holeFirstChunk, holeSizeChunks );
143                 mb_array[0].logicalEnd = holeFirstChunk;
144                 mb_array[0].absEnd = holeFirstChunk;
145                 mb_array[1].logicalStart = holeFirstChunk;
146                 mb_array[1].logicalEnd = 0x100000000 - holeSizeChunks;
147                 mb_array[1].absStart = holeFirstChunk + holeSizeChunks;
148                 mb_array[1].absEnd = 0x100000000;
149         }
150         return numMemoryBlocks;
151 }
152
153 #define MaxSegmentAreas                 32
154 #define MaxSegmentAdrRangeBlocks        128
155 #define MaxAreaRangeBlocks              4
156
157 unsigned long iSeries_process_Regatta_mainstore_vpd(
158                 struct MemoryBlock *mb_array, unsigned long max_entries)
159 {
160         struct IoHriMainStoreSegment5 *msVpdP =
161                 (struct IoHriMainStoreSegment5 *)xMsVpd;
162         unsigned long numSegmentBlocks = 0;
163         u32 existsBits = msVpdP->msAreaExists;
164         unsigned long area_num;
165
166         printk("Mainstore_VPD: Regatta\n");
167
168         for (area_num = 0; area_num < MaxSegmentAreas; ++area_num ) {
169                 unsigned long numAreaBlocks;
170                 struct IoHriMainStoreArea4 *currentArea;
171
172                 if (existsBits & 0x80000000) {
173                         unsigned long block_num;
174
175                         currentArea = &msVpdP->msAreaArray[area_num];
176                         numAreaBlocks = currentArea->numAdrRangeBlocks;
177                         printk("ms_vpd: processing area %2ld  blocks=%ld",
178                                         area_num, numAreaBlocks);
179                         for (block_num = 0; block_num < numAreaBlocks;
180                                         ++block_num ) {
181                                 /* Process an address range block */
182                                 struct MemoryBlock tempBlock;
183                                 unsigned long i;
184
185                                 tempBlock.absStart =
186                                         (unsigned long)currentArea->xAdrRangeBlock[block_num].blockStart;
187                                 tempBlock.absEnd =
188                                         (unsigned long)currentArea->xAdrRangeBlock[block_num].blockEnd;
189                                 tempBlock.logicalStart = 0;
190                                 tempBlock.logicalEnd   = 0;
191                                 printk("\n          block %ld absStart=%016lx absEnd=%016lx",
192                                                 block_num, tempBlock.absStart,
193                                                 tempBlock.absEnd);
194
195                                 for (i = 0; i < numSegmentBlocks; ++i) {
196                                         if (mb_array[i].absStart ==
197                                                         tempBlock.absStart)
198                                                 break;
199                                 }
200                                 if (i == numSegmentBlocks) {
201                                         if (numSegmentBlocks == max_entries)
202                                                 panic("iSeries_process_mainstore_vpd: too many memory blocks");
203                                         mb_array[numSegmentBlocks] = tempBlock;
204                                         ++numSegmentBlocks;
205                                 } else
206                                         printk(" (duplicate)");
207                         }
208                         printk("\n");
209                 }
210                 existsBits <<= 1;
211         }
212         /* Now sort the blocks found into ascending sequence */
213         if (numSegmentBlocks > 1) {
214                 unsigned long m, n;
215
216                 for (m = 0; m < numSegmentBlocks - 1; ++m) {
217                         for (n = numSegmentBlocks - 1; m < n; --n) {
218                                 if (mb_array[n].absStart <
219                                                 mb_array[n-1].absStart) {
220                                         struct MemoryBlock tempBlock;
221
222                                         tempBlock = mb_array[n];
223                                         mb_array[n] = mb_array[n-1];
224                                         mb_array[n-1] = tempBlock;
225                                 }
226                         }
227                 }
228         }
229         /*
230          * Assign "logical" addresses to each block.  These
231          * addresses correspond to the hypervisor "bitmap" space.
232          * Convert all addresses into units of 256K chunks.
233          */
234         {
235         unsigned long i, nextBitmapAddress;
236
237         printk("ms_vpd: %ld sorted memory blocks\n", numSegmentBlocks);
238         nextBitmapAddress = 0;
239         for (i = 0; i < numSegmentBlocks; ++i) {
240                 unsigned long length = mb_array[i].absEnd -
241                         mb_array[i].absStart;
242
243                 mb_array[i].logicalStart = nextBitmapAddress;
244                 mb_array[i].logicalEnd = nextBitmapAddress + length;
245                 nextBitmapAddress += length;
246                 printk("          Bitmap range: %016lx - %016lx\n"
247                                 "        Absolute range: %016lx - %016lx\n",
248                                 mb_array[i].logicalStart,
249                                 mb_array[i].logicalEnd, 
250                                 mb_array[i].absStart, mb_array[i].absEnd);
251                 mb_array[i].absStart = addr_to_chunk(mb_array[i].absStart &
252                                 0x000fffffffffffff);
253                 mb_array[i].absEnd = addr_to_chunk(mb_array[i].absEnd &
254                                 0x000fffffffffffff);
255                 mb_array[i].logicalStart =
256                         addr_to_chunk(mb_array[i].logicalStart);
257                 mb_array[i].logicalEnd = addr_to_chunk(mb_array[i].logicalEnd);
258         }
259         }
260
261         return numSegmentBlocks;
262 }
263
264 unsigned long iSeries_process_mainstore_vpd(struct MemoryBlock *mb_array,
265                 unsigned long max_entries)
266 {
267         unsigned long i;
268         unsigned long mem_blocks = 0;
269
270         if (cur_cpu_spec->cpu_features & CPU_FTR_SLB)
271                 mem_blocks = iSeries_process_Regatta_mainstore_vpd(mb_array,
272                                 max_entries);
273         else
274                 mem_blocks = iSeries_process_Condor_mainstore_vpd(mb_array,
275                                 max_entries);
276
277         printk("Mainstore_VPD: numMemoryBlocks = %ld \n", mem_blocks);
278         for (i = 0; i < mem_blocks; ++i) {
279                 printk("Mainstore_VPD: block %3ld logical chunks %016lx - %016lx\n"
280                        "                             abs chunks %016lx - %016lx\n",
281                         i, mb_array[i].logicalStart, mb_array[i].logicalEnd,
282                         mb_array[i].absStart, mb_array[i].absEnd);
283         }
284         return mem_blocks;
285 }
286
287 static void __init iSeries_parse_cmdline(void)
288 {
289         char *p, *q;
290
291         /* copy the command line parameter from the primary VSP  */
292         HvCallEvent_dmaToSp(cmd_line, 2 * 64* 1024, 256,
293                         HvLpDma_Direction_RemoteToLocal);
294
295         p = cmd_line;
296         q = cmd_line + 255;
297         while(p < q) {
298                 if (!*p || *p == '\n')
299                         break;
300                 ++p;
301         }
302         *p = 0;
303 }
304
305 /*static*/ void __init iSeries_init_early(void)
306 {
307         DBG(" -> iSeries_init_early()\n");
308
309         ppcdbg_initialize();
310
311 #if defined(CONFIG_BLK_DEV_INITRD)
312         /*
313          * If the init RAM disk has been configured and there is
314          * a non-zero starting address for it, set it up
315          */
316         if (naca->xRamDisk) {
317                 initrd_start = (unsigned long)__va(naca->xRamDisk);
318                 initrd_end = initrd_start + naca->xRamDiskSize * PAGE_SIZE;
319                 initrd_below_start_ok = 1;      // ramdisk in kernel space
320                 ROOT_DEV = Root_RAM0;
321                 if (((rd_size * 1024) / PAGE_SIZE) < naca->xRamDiskSize)
322                         rd_size = (naca->xRamDiskSize * PAGE_SIZE) / 1024;
323         } else
324 #endif /* CONFIG_BLK_DEV_INITRD */
325         {
326             /* ROOT_DEV = MKDEV(VIODASD_MAJOR, 1); */
327         }
328
329         iSeries_recal_tb = get_tb();
330         iSeries_recal_titan = HvCallXm_loadTod();
331
332         /*
333          * Cache sizes must be initialized before hpte_init_iSeries is called
334          * as the later need them for flush_icache_range()
335          */
336         setup_iSeries_cache_sizes();
337
338         /*
339          * Initialize the hash table management pointers
340          */
341         hpte_init_iSeries();
342
343         /*
344          * Initialize the DMA/TCE management
345          */
346         tce_init_iSeries();
347
348         /*
349          * Initialize the table which translate Linux physical addresses to
350          * AS/400 absolute addresses
351          */
352         build_iSeries_Memory_Map();
353
354         /* Initialize machine-dependency vectors */
355 #ifdef CONFIG_SMP
356         smp_init_iSeries();
357 #endif
358         if (itLpNaca.xPirEnvironMode == 0) 
359                 piranha_simulator = 1;
360
361         /* Associate Lp Event Queue 0 with processor 0 */
362         HvCallEvent_setLpEventQueueInterruptProc(0, 0);
363
364         mf_init();
365         mf_initialized = 1;
366         mb();
367
368         /* If we were passed an initrd, set the ROOT_DEV properly if the values
369          * look sensible. If not, clear initrd reference.
370          */
371 #ifdef CONFIG_BLK_DEV_INITRD
372         if (initrd_start >= KERNELBASE && initrd_end >= KERNELBASE &&
373             initrd_end > initrd_start)
374                 ROOT_DEV = Root_RAM0;
375         else
376                 initrd_start = initrd_end = 0;
377 #endif /* CONFIG_BLK_DEV_INITRD */
378
379
380         iSeries_parse_cmdline();
381
382         DBG(" <- iSeries_init_early()\n");
383 }
384
385 /*
386  * The iSeries may have very large memories ( > 128 GB ) and a partition
387  * may get memory in "chunks" that may be anywhere in the 2**52 real
388  * address space.  The chunks are 256K in size.  To map this to the 
389  * memory model Linux expects, the AS/400 specific code builds a 
390  * translation table to translate what Linux thinks are "physical"
391  * addresses to the actual real addresses.  This allows us to make 
392  * it appear to Linux that we have contiguous memory starting at
393  * physical address zero while in fact this could be far from the truth.
394  * To avoid confusion, I'll let the words physical and/or real address 
395  * apply to the Linux addresses while I'll use "absolute address" to 
396  * refer to the actual hardware real address.
397  *
398  * build_iSeries_Memory_Map gets information from the Hypervisor and 
399  * looks at the Main Store VPD to determine the absolute addresses
400  * of the memory that has been assigned to our partition and builds
401  * a table used to translate Linux's physical addresses to these
402  * absolute addresses.  Absolute addresses are needed when 
403  * communicating with the hypervisor (e.g. to build HPT entries)
404  */
405
406 static void __init build_iSeries_Memory_Map(void)
407 {
408         u32 loadAreaFirstChunk, loadAreaLastChunk, loadAreaSize;
409         u32 nextPhysChunk;
410         u32 hptFirstChunk, hptLastChunk, hptSizeChunks, hptSizePages;
411         u32 num_ptegs;
412         u32 totalChunks,moreChunks;
413         u32 currChunk, thisChunk, absChunk;
414         u32 currDword;
415         u32 chunkBit;
416         u64 map;
417         struct MemoryBlock mb[32];
418         unsigned long numMemoryBlocks, curBlock;
419
420         /* Chunk size on iSeries is 256K bytes */
421         totalChunks = (u32)HvLpConfig_getMsChunks();
422         klimit = msChunks_alloc(klimit, totalChunks, 1UL << 18);
423
424         /*
425          * Get absolute address of our load area
426          * and map it to physical address 0
427          * This guarantees that the loadarea ends up at physical 0
428          * otherwise, it might not be returned by PLIC as the first
429          * chunks
430          */
431         
432         loadAreaFirstChunk = (u32)addr_to_chunk(itLpNaca.xLoadAreaAddr);
433         loadAreaSize =  itLpNaca.xLoadAreaChunks;
434
435         /*
436          * Only add the pages already mapped here.  
437          * Otherwise we might add the hpt pages 
438          * The rest of the pages of the load area
439          * aren't in the HPT yet and can still
440          * be assigned an arbitrary physical address
441          */
442         if ((loadAreaSize * 64) > HvPagesToMap)
443                 loadAreaSize = HvPagesToMap / 64;
444
445         loadAreaLastChunk = loadAreaFirstChunk + loadAreaSize - 1;
446
447         /*
448          * TODO Do we need to do something if the HPT is in the 64MB load area?
449          * This would be required if the itLpNaca.xLoadAreaChunks includes 
450          * the HPT size
451          */
452
453         printk("Mapping load area - physical addr = 0000000000000000\n"
454                 "                    absolute addr = %016lx\n",
455                 chunk_to_addr(loadAreaFirstChunk));
456         printk("Load area size %dK\n", loadAreaSize * 256);
457         
458         for (nextPhysChunk = 0; nextPhysChunk < loadAreaSize; ++nextPhysChunk)
459                 msChunks.abs[nextPhysChunk] =
460                         loadAreaFirstChunk + nextPhysChunk;
461         
462         /*
463          * Get absolute address of our HPT and remember it so
464          * we won't map it to any physical address
465          */
466         hptFirstChunk = (u32)addr_to_chunk(HvCallHpt_getHptAddress());
467         hptSizePages = (u32)HvCallHpt_getHptPages();
468         hptSizeChunks = hptSizePages >> (msChunks.chunk_shift - PAGE_SHIFT);
469         hptLastChunk = hptFirstChunk + hptSizeChunks - 1;
470
471         printk("HPT absolute addr = %016lx, size = %dK\n",
472                         chunk_to_addr(hptFirstChunk), hptSizeChunks * 256);
473
474         /* Fill in the htab_data structure */
475         /* Fill in size of hashed page table */
476         num_ptegs = hptSizePages *
477                 (PAGE_SIZE / (sizeof(HPTE) * HPTES_PER_GROUP));
478         htab_data.htab_num_ptegs = num_ptegs;
479         htab_data.htab_hash_mask = num_ptegs - 1;
480         
481         /*
482          * The actual hashed page table is in the hypervisor,
483          * we have no direct access
484          */
485         htab_data.htab = NULL;
486
487         /*
488          * Determine if absolute memory has any
489          * holes so that we can interpret the
490          * access map we get back from the hypervisor
491          * correctly.
492          */
493         numMemoryBlocks = iSeries_process_mainstore_vpd(mb, 32);
494
495         /*
496          * Process the main store access map from the hypervisor
497          * to build up our physical -> absolute translation table
498          */
499         curBlock = 0;
500         currChunk = 0;
501         currDword = 0;
502         moreChunks = totalChunks;
503
504         while (moreChunks) {
505                 map = HvCallSm_get64BitsOfAccessMap(itLpNaca.xLpIndex,
506                                 currDword);
507                 thisChunk = currChunk;
508                 while (map) {
509                         chunkBit = map >> 63;
510                         map <<= 1;
511                         if (chunkBit) {
512                                 --moreChunks;
513                                 while (thisChunk >= mb[curBlock].logicalEnd) {
514                                         ++curBlock;
515                                         if (curBlock >= numMemoryBlocks)
516                                                 panic("out of memory blocks");
517                                 }
518                                 if (thisChunk < mb[curBlock].logicalStart)
519                                         panic("memory block error");
520
521                                 absChunk = mb[curBlock].absStart +
522                                         (thisChunk - mb[curBlock].logicalStart);
523                                 if (((absChunk < hptFirstChunk) ||
524                                      (absChunk > hptLastChunk)) &&
525                                     ((absChunk < loadAreaFirstChunk) ||
526                                      (absChunk > loadAreaLastChunk))) {
527                                         msChunks.abs[nextPhysChunk] = absChunk;
528                                         ++nextPhysChunk;
529                                 }
530                         }
531                         ++thisChunk;
532                 }
533                 ++currDword;
534                 currChunk += 64;
535         }
536
537         /*
538          * main store size (in chunks) is 
539          *   totalChunks - hptSizeChunks
540          * which should be equal to 
541          *   nextPhysChunk
542          */
543         systemcfg->physicalMemorySize = chunk_to_addr(nextPhysChunk);
544
545         /* Bolt kernel mappings for all of memory */
546         iSeries_bolt_kernel(0, systemcfg->physicalMemorySize);
547
548         lmb_init();
549         lmb_add(0, systemcfg->physicalMemorySize);
550         lmb_analyze();  /* ?? */
551         lmb_reserve(0, __pa(klimit));
552 }
553
554 /*
555  * Set up the variables that describe the cache line sizes
556  * for this machine.
557  */
558 static void __init setup_iSeries_cache_sizes(void)
559 {
560         unsigned int i, n;
561         unsigned int procIx = get_paca()->lppaca.xDynHvPhysicalProcIndex;
562
563         systemcfg->iCacheL1Size =
564                 xIoHriProcessorVpd[procIx].xInstCacheSize * 1024;
565         systemcfg->iCacheL1LineSize =
566                 xIoHriProcessorVpd[procIx].xInstCacheOperandSize;
567         systemcfg->dCacheL1Size =
568                 xIoHriProcessorVpd[procIx].xDataL1CacheSizeKB * 1024;
569         systemcfg->dCacheL1LineSize =
570                 xIoHriProcessorVpd[procIx].xDataCacheOperandSize;
571         naca->iCacheL1LinesPerPage = PAGE_SIZE / systemcfg->iCacheL1LineSize;
572         naca->dCacheL1LinesPerPage = PAGE_SIZE / systemcfg->dCacheL1LineSize;
573
574         i = systemcfg->iCacheL1LineSize;
575         n = 0;
576         while ((i = (i / 2)))
577                 ++n;
578         naca->iCacheL1LogLineSize = n;
579
580         i = systemcfg->dCacheL1LineSize;
581         n = 0;
582         while ((i = (i / 2)))
583                 ++n;
584         naca->dCacheL1LogLineSize = n;
585
586         printk("D-cache line size = %d\n",
587                         (unsigned int)systemcfg->dCacheL1LineSize);
588         printk("I-cache line size = %d\n",
589                         (unsigned int)systemcfg->iCacheL1LineSize);
590 }
591
592 /*
593  * Create a pte. Used during initialization only.
594  */
595 static void iSeries_make_pte(unsigned long va, unsigned long pa,
596                              int mode)
597 {
598         HPTE local_hpte, rhpte;
599         unsigned long hash, vpn;
600         long slot;
601
602         vpn = va >> PAGE_SHIFT;
603         hash = hpt_hash(vpn, 0);
604
605         local_hpte.dw1.dword1 = pa | mode;
606         local_hpte.dw0.dword0 = 0;
607         local_hpte.dw0.dw0.avpn = va >> 23;
608         local_hpte.dw0.dw0.bolted = 1;          /* bolted */
609         local_hpte.dw0.dw0.v = 1;
610
611         slot = HvCallHpt_findValid(&rhpte, vpn);
612         if (slot < 0) {
613                 /* Must find space in primary group */
614                 panic("hash_page: hpte already exists\n");
615         }
616         HvCallHpt_addValidate(slot, 0, (HPTE *)&local_hpte );
617 }
618
619 /*
620  * Bolt the kernel addr space into the HPT
621  */
622 static void __init iSeries_bolt_kernel(unsigned long saddr, unsigned long eaddr)
623 {
624         unsigned long pa;
625         unsigned long mode_rw = _PAGE_ACCESSED | _PAGE_COHERENT | PP_RWXX;
626         HPTE hpte;
627
628         for (pa = saddr; pa < eaddr ;pa += PAGE_SIZE) {
629                 unsigned long ea = (unsigned long)__va(pa);
630                 unsigned long vsid = get_kernel_vsid(ea);
631                 unsigned long va = (vsid << 28) | (pa & 0xfffffff);
632                 unsigned long vpn = va >> PAGE_SHIFT;
633                 unsigned long slot = HvCallHpt_findValid(&hpte, vpn);
634
635                 if (hpte.dw0.dw0.v) {
636                         /* HPTE exists, so just bolt it */
637                         HvCallHpt_setSwBits(slot, 0x10, 0);
638                         /* And make sure the pp bits are correct */
639                         HvCallHpt_setPp(slot, PP_RWXX);
640                 } else
641                         /* No HPTE exists, so create a new bolted one */
642                         iSeries_make_pte(va, phys_to_abs(pa), mode_rw);
643         }
644 }
645
646 extern unsigned long ppc_proc_freq;
647 extern unsigned long ppc_tb_freq;
648
649 /*
650  * Document me.
651  */
652 void __init iSeries_setup_arch(void)
653 {
654         void *eventStack;
655         unsigned procIx = get_paca()->lppaca.xDynHvPhysicalProcIndex;
656
657         /* Add an eye catcher and the systemcfg layout version number */
658         strcpy(systemcfg->eye_catcher, "SYSTEMCFG:PPC64");
659         systemcfg->version.major = SYSTEMCFG_MAJOR;
660         systemcfg->version.minor = SYSTEMCFG_MINOR;
661
662         /* Setup the Lp Event Queue */
663
664         /* Allocate a page for the Event Stack
665          * The hypervisor wants the absolute real address, so
666          * we subtract out the KERNELBASE and add in the
667          * absolute real address of the kernel load area
668          */
669         eventStack = alloc_bootmem_pages(LpEventStackSize);
670         memset(eventStack, 0, LpEventStackSize);
671         
672         /* Invoke the hypervisor to initialize the event stack */
673         HvCallEvent_setLpEventStack(0, eventStack, LpEventStackSize);
674
675         /* Initialize fields in our Lp Event Queue */
676         xItLpQueue.xSlicEventStackPtr = (char *)eventStack;
677         xItLpQueue.xSlicCurEventPtr = (char *)eventStack;
678         xItLpQueue.xSlicLastValidEventPtr = (char *)eventStack + 
679                                         (LpEventStackSize - LpEventMaxSize);
680         xItLpQueue.xIndex = 0;
681
682         /* Compute processor frequency */
683         procFreqHz = ((1UL << 34) * 1000000) /
684                         xIoHriProcessorVpd[procIx].xProcFreq;
685         procFreqMhz = procFreqHz / 1000000;
686         procFreqMhzHundreths = (procFreqHz / 10000) - (procFreqMhz * 100);
687         ppc_proc_freq = procFreqHz;
688
689         /* Compute time base frequency */
690         tbFreqHz = ((1UL << 32) * 1000000) /
691                 xIoHriProcessorVpd[procIx].xTimeBaseFreq;
692         tbFreqMhz = tbFreqHz / 1000000;
693         tbFreqMhzHundreths = (tbFreqHz / 10000) - (tbFreqMhz * 100);
694         ppc_tb_freq = tbFreqHz;
695
696         printk("Max  logical processors = %d\n", 
697                         itVpdAreas.xSlicMaxLogicalProcs);
698         printk("Max physical processors = %d\n",
699                         itVpdAreas.xSlicMaxPhysicalProcs);
700         printk("Processor frequency = %lu.%02lu\n", procFreqMhz,
701                         procFreqMhzHundreths);
702         printk("Time base frequency = %lu.%02lu\n", tbFreqMhz,
703                         tbFreqMhzHundreths);
704         systemcfg->processor = xIoHriProcessorVpd[procIx].xPVR;
705         printk("Processor version = %x\n", systemcfg->processor);
706 }
707
708 void iSeries_get_cpuinfo(struct seq_file *m)
709 {
710         seq_printf(m, "machine\t\t: 64-bit iSeries Logical Partition\n");
711 }
712
713 /*
714  * Document me.
715  * and Implement me.
716  */
717 int iSeries_get_irq(struct pt_regs *regs)
718 {
719         /* -2 means ignore this interrupt */
720         return -2;
721 }
722
723 /*
724  * Document me.
725  */
726 void iSeries_restart(char *cmd)
727 {
728         mf_reboot();
729 }
730
731 /*
732  * Document me.
733  */
734 void iSeries_power_off(void)
735 {
736         mf_power_off();
737 }
738
739 /*
740  * Document me.
741  */
742 void iSeries_halt(void)
743 {
744         mf_power_off();
745 }
746
747 /* JDH Hack */
748 unsigned long jdh_time = 0;
749
750 extern void setup_default_decr(void);
751
752 /*
753  * void __init iSeries_calibrate_decr()
754  *
755  * Description:
756  *   This routine retrieves the internal processor frequency from the VPD,
757  *   and sets up the kernel timer decrementer based on that value.
758  *
759  */
760 void __init iSeries_calibrate_decr(void)
761 {
762         unsigned long   cyclesPerUsec;
763         struct div_result divres;
764         
765         /* Compute decrementer (and TB) frequency in cycles/sec */
766         cyclesPerUsec = ppc_tb_freq / 1000000;
767
768         /*
769          * Set the amount to refresh the decrementer by.  This
770          * is the number of decrementer ticks it takes for 
771          * 1/HZ seconds.
772          */
773         tb_ticks_per_jiffy = ppc_tb_freq / HZ;
774
775 #if 0
776         /* TEST CODE FOR ADJTIME */
777         tb_ticks_per_jiffy += tb_ticks_per_jiffy / 5000;
778         /* END OF TEST CODE */
779 #endif
780
781         /*
782          * tb_ticks_per_sec = freq; would give better accuracy
783          * but tb_ticks_per_sec = tb_ticks_per_jiffy*HZ; assures
784          * that jiffies (and xtime) will match the time returned
785          * by do_gettimeofday.
786          */
787         tb_ticks_per_sec = tb_ticks_per_jiffy * HZ;
788         tb_ticks_per_usec = cyclesPerUsec;
789         tb_to_us = mulhwu_scale_factor(ppc_tb_freq, 1000000);
790         div128_by_32(1024 * 1024, 0, tb_ticks_per_sec, &divres);
791         tb_to_xs = divres.result_low;
792         setup_default_decr();
793 }
794
795 void __init iSeries_progress(char * st, unsigned short code)
796 {
797         printk("Progress: [%04x] - %s\n", (unsigned)code, st);
798         if (!piranha_simulator && mf_initialized) {
799                 if (code != 0xffff)
800                         mf_display_progress(code);
801                 else
802                         mf_clear_src();
803         }
804 }
805
806 static void __init iSeries_fixup_klimit(void)
807 {
808         /*
809          * Change klimit to take into account any ram disk
810          * that may be included
811          */
812         if (naca->xRamDisk)
813                 klimit = KERNELBASE + (u64)naca->xRamDisk +
814                         (naca->xRamDiskSize * PAGE_SIZE);
815         else {
816                 /*
817                  * No ram disk was included - check and see if there
818                  * was an embedded system map.  Change klimit to take
819                  * into account any embedded system map
820                  */
821                 if (embedded_sysmap_end)
822                         klimit = KERNELBASE + ((embedded_sysmap_end + 4095) &
823                                         0xfffffffffffff000);
824         }
825 }
826
827 int __init iSeries_src_init(void)
828 {
829         /* clear the progress line */
830         ppc_md.progress(" ", 0xffff);
831         return 0;
832 }
833
834 late_initcall(iSeries_src_init);
835
836 void __init iSeries_early_setup(void)
837 {
838         iSeries_fixup_klimit();
839
840         ppc_md.setup_arch = iSeries_setup_arch;
841         ppc_md.get_cpuinfo = iSeries_get_cpuinfo;
842         ppc_md.init_IRQ = iSeries_init_IRQ;
843         ppc_md.get_irq = iSeries_get_irq;
844         ppc_md.init_early = iSeries_init_early,
845
846         ppc_md.pcibios_fixup  = iSeries_pci_final_fixup;
847
848         ppc_md.restart = iSeries_restart;
849         ppc_md.power_off = iSeries_power_off;
850         ppc_md.halt = iSeries_halt;
851
852         ppc_md.get_boot_time = iSeries_get_boot_time;
853         ppc_md.set_rtc_time = iSeries_set_rtc_time;
854         ppc_md.get_rtc_time = iSeries_get_rtc_time;
855         ppc_md.calibrate_decr = iSeries_calibrate_decr;
856         ppc_md.progress = iSeries_progress;
857 }
858