x86: ivybridge: Convert SDRAM init to use driver model
[platform/kernel/u-boot.git] / arch / x86 / cpu / ivybridge / sdram.c
1 /*
2  * Copyright (c) 2011 The Chromium OS Authors.
3  * (C) Copyright 2010,2011
4  * Graeme Russ, <graeme.russ@gmail.com>
5  *
6  * Portions from Coreboot mainboard/google/link/romstage.c
7  * Copyright (C) 2007-2010 coresystems GmbH
8  * Copyright (C) 2011 Google Inc.
9  *
10  * SPDX-License-Identifier:     GPL-2.0
11  */
12
13 #include <common.h>
14 #include <errno.h>
15 #include <fdtdec.h>
16 #include <malloc.h>
17 #include <net.h>
18 #include <rtc.h>
19 #include <spi.h>
20 #include <spi_flash.h>
21 #include <asm/processor.h>
22 #include <asm/gpio.h>
23 #include <asm/global_data.h>
24 #include <asm/mrccache.h>
25 #include <asm/mtrr.h>
26 #include <asm/pci.h>
27 #include <asm/arch/me.h>
28 #include <asm/arch/pei_data.h>
29 #include <asm/arch/pch.h>
30 #include <asm/post.h>
31 #include <asm/arch/sandybridge.h>
32
33 DECLARE_GLOBAL_DATA_PTR;
34
35 #define CMOS_OFFSET_MRC_SEED            152
36 #define CMOS_OFFSET_MRC_SEED_S3         156
37 #define CMOS_OFFSET_MRC_SEED_CHK        160
38
39 /*
40  * This function looks for the highest region of memory lower than 4GB which
41  * has enough space for U-Boot where U-Boot is aligned on a page boundary.
42  * It overrides the default implementation found elsewhere which simply
43  * picks the end of ram, wherever that may be. The location of the stack,
44  * the relocation address, and how far U-Boot is moved by relocation are
45  * set in the global data structure.
46  */
47 ulong board_get_usable_ram_top(ulong total_size)
48 {
49         struct memory_info *info = &gd->arch.meminfo;
50         uintptr_t dest_addr = 0;
51         struct memory_area *largest = NULL;
52         int i;
53
54         /* Find largest area of memory below 4GB */
55
56         for (i = 0; i < info->num_areas; i++) {
57                 struct memory_area *area = &info->area[i];
58
59                 if (area->start >= 1ULL << 32)
60                         continue;
61                 if (!largest || area->size > largest->size)
62                         largest = area;
63         }
64
65         /* If no suitable area was found, return an error. */
66         assert(largest);
67         if (!largest || largest->size < (2 << 20))
68                 panic("No available memory found for relocation");
69
70         dest_addr = largest->start + largest->size;
71
72         return (ulong)dest_addr;
73 }
74
75 void dram_init_banksize(void)
76 {
77         struct memory_info *info = &gd->arch.meminfo;
78         int num_banks;
79         int i;
80
81         for (i = 0, num_banks = 0; i < info->num_areas; i++) {
82                 struct memory_area *area = &info->area[i];
83
84                 if (area->start >= 1ULL << 32)
85                         continue;
86                 gd->bd->bi_dram[num_banks].start = area->start;
87                 gd->bd->bi_dram[num_banks].size = area->size;
88                 num_banks++;
89         }
90 }
91
92 static int read_seed_from_cmos(struct pei_data *pei_data)
93 {
94         u16 c1, c2, checksum, seed_checksum;
95         struct udevice *dev;
96         int ret = 0;
97
98         ret = uclass_get_device(UCLASS_RTC, 0, &dev);
99         if (ret) {
100                 debug("Cannot find RTC: err=%d\n", ret);
101                 return -ENODEV;
102         }
103
104         /*
105          * Read scrambler seeds from CMOS RAM. We don't want to store them in
106          * SPI flash since they change on every boot and that would wear down
107          * the flash too much. So we store these in CMOS and the large MRC
108          * data in SPI flash.
109          */
110         ret = rtc_read32(dev, CMOS_OFFSET_MRC_SEED, &pei_data->scrambler_seed);
111         if (!ret) {
112                 ret = rtc_read32(dev, CMOS_OFFSET_MRC_SEED_S3,
113                                  &pei_data->scrambler_seed_s3);
114         }
115         if (ret) {
116                 debug("Failed to read from RTC %s\n", dev->name);
117                 return ret;
118         }
119
120         debug("Read scrambler seed    0x%08x from CMOS 0x%02x\n",
121               pei_data->scrambler_seed, CMOS_OFFSET_MRC_SEED);
122         debug("Read S3 scrambler seed 0x%08x from CMOS 0x%02x\n",
123               pei_data->scrambler_seed_s3, CMOS_OFFSET_MRC_SEED_S3);
124
125         /* Compute seed checksum and compare */
126         c1 = compute_ip_checksum((u8 *)&pei_data->scrambler_seed,
127                                  sizeof(u32));
128         c2 = compute_ip_checksum((u8 *)&pei_data->scrambler_seed_s3,
129                                  sizeof(u32));
130         checksum = add_ip_checksums(sizeof(u32), c1, c2);
131
132         seed_checksum = rtc_read8(dev, CMOS_OFFSET_MRC_SEED_CHK);
133         seed_checksum |= rtc_read8(dev, CMOS_OFFSET_MRC_SEED_CHK + 1) << 8;
134
135         if (checksum != seed_checksum) {
136                 debug("%s: invalid seed checksum\n", __func__);
137                 pei_data->scrambler_seed = 0;
138                 pei_data->scrambler_seed_s3 = 0;
139                 return -EINVAL;
140         }
141
142         return 0;
143 }
144
145 static int prepare_mrc_cache(struct pei_data *pei_data)
146 {
147         struct mrc_data_container *mrc_cache;
148         struct mrc_region entry;
149         int ret;
150
151         ret = read_seed_from_cmos(pei_data);
152         if (ret)
153                 return ret;
154         ret = mrccache_get_region(NULL, &entry);
155         if (ret)
156                 return ret;
157         mrc_cache = mrccache_find_current(&entry);
158         if (!mrc_cache)
159                 return -ENOENT;
160
161         pei_data->mrc_input = mrc_cache->data;
162         pei_data->mrc_input_len = mrc_cache->data_size;
163         debug("%s: at %p, size %x checksum %04x\n", __func__,
164               pei_data->mrc_input, pei_data->mrc_input_len,
165               mrc_cache->checksum);
166
167         return 0;
168 }
169
170 static int write_seeds_to_cmos(struct pei_data *pei_data)
171 {
172         u16 c1, c2, checksum;
173         struct udevice *dev;
174         int ret = 0;
175
176         ret = uclass_get_device(UCLASS_RTC, 0, &dev);
177         if (ret) {
178                 debug("Cannot find RTC: err=%d\n", ret);
179                 return -ENODEV;
180         }
181
182         /* Save the MRC seed values to CMOS */
183         rtc_write32(dev, CMOS_OFFSET_MRC_SEED, pei_data->scrambler_seed);
184         debug("Save scrambler seed    0x%08x to CMOS 0x%02x\n",
185               pei_data->scrambler_seed, CMOS_OFFSET_MRC_SEED);
186
187         rtc_write32(dev, CMOS_OFFSET_MRC_SEED_S3, pei_data->scrambler_seed_s3);
188         debug("Save s3 scrambler seed 0x%08x to CMOS 0x%02x\n",
189               pei_data->scrambler_seed_s3, CMOS_OFFSET_MRC_SEED_S3);
190
191         /* Save a simple checksum of the seed values */
192         c1 = compute_ip_checksum((u8 *)&pei_data->scrambler_seed,
193                                  sizeof(u32));
194         c2 = compute_ip_checksum((u8 *)&pei_data->scrambler_seed_s3,
195                                  sizeof(u32));
196         checksum = add_ip_checksums(sizeof(u32), c1, c2);
197
198         rtc_write8(dev, CMOS_OFFSET_MRC_SEED_CHK, checksum & 0xff);
199         rtc_write8(dev, CMOS_OFFSET_MRC_SEED_CHK + 1, (checksum >> 8) & 0xff);
200
201         return 0;
202 }
203
204 /* Use this hook to save our SDRAM parameters */
205 int misc_init_r(void)
206 {
207         int ret;
208
209         ret = mrccache_save();
210         if (ret)
211                 printf("Unable to save MRC data: %d\n", ret);
212
213         return 0;
214 }
215
216 static const char *const ecc_decoder[] = {
217         "inactive",
218         "active on IO",
219         "disabled on IO",
220         "active"
221 };
222
223 /*
224  * Dump in the log memory controller configuration as read from the memory
225  * controller registers.
226  */
227 static void report_memory_config(void)
228 {
229         u32 addr_decoder_common, addr_decode_ch[2];
230         int i;
231
232         addr_decoder_common = readl(MCHBAR_REG(0x5000));
233         addr_decode_ch[0] = readl(MCHBAR_REG(0x5004));
234         addr_decode_ch[1] = readl(MCHBAR_REG(0x5008));
235
236         debug("memcfg DDR3 clock %d MHz\n",
237               (readl(MCHBAR_REG(0x5e04)) * 13333 * 2 + 50) / 100);
238         debug("memcfg channel assignment: A: %d, B % d, C % d\n",
239               addr_decoder_common & 3,
240               (addr_decoder_common >> 2) & 3,
241               (addr_decoder_common >> 4) & 3);
242
243         for (i = 0; i < ARRAY_SIZE(addr_decode_ch); i++) {
244                 u32 ch_conf = addr_decode_ch[i];
245                 debug("memcfg channel[%d] config (%8.8x):\n", i, ch_conf);
246                 debug("   ECC %s\n", ecc_decoder[(ch_conf >> 24) & 3]);
247                 debug("   enhanced interleave mode %s\n",
248                       ((ch_conf >> 22) & 1) ? "on" : "off");
249                 debug("   rank interleave %s\n",
250                       ((ch_conf >> 21) & 1) ? "on" : "off");
251                 debug("   DIMMA %d MB width x%d %s rank%s\n",
252                       ((ch_conf >> 0) & 0xff) * 256,
253                       ((ch_conf >> 19) & 1) ? 16 : 8,
254                       ((ch_conf >> 17) & 1) ? "dual" : "single",
255                       ((ch_conf >> 16) & 1) ? "" : ", selected");
256                 debug("   DIMMB %d MB width x%d %s rank%s\n",
257                       ((ch_conf >> 8) & 0xff) * 256,
258                       ((ch_conf >> 20) & 1) ? 16 : 8,
259                       ((ch_conf >> 18) & 1) ? "dual" : "single",
260                       ((ch_conf >> 16) & 1) ? ", selected" : "");
261         }
262 }
263
264 static void post_system_agent_init(struct pei_data *pei_data)
265 {
266         /* If PCIe init is skipped, set the PEG clock gating */
267         if (!pei_data->pcie_init)
268                 setbits_le32(MCHBAR_REG(0x7010), 1);
269 }
270
271 static asmlinkage void console_tx_byte(unsigned char byte)
272 {
273 #ifdef DEBUG
274         putc(byte);
275 #endif
276 }
277
278 static int recovery_mode_enabled(void)
279 {
280         return false;
281 }
282
283 /**
284  * Find the PEI executable in the ROM and execute it.
285  *
286  * @dev: Northbridge device
287  * @pei_data: configuration data for UEFI PEI reference code
288  */
289 int sdram_initialise(struct udevice *dev, struct udevice *me_dev,
290                      struct pei_data *pei_data)
291 {
292         unsigned version;
293         const char *data;
294         uint16_t done;
295         int ret;
296
297         report_platform_info();
298
299         /* Wait for ME to be ready */
300         ret = intel_early_me_init(me_dev);
301         if (ret)
302                 return ret;
303         ret = intel_early_me_uma_size(me_dev);
304         if (ret < 0)
305                 return ret;
306
307         debug("Starting UEFI PEI System Agent\n");
308
309         /*
310          * Do not pass MRC data in for recovery mode boot,
311          * Always pass it in for S3 resume.
312          */
313         if (!recovery_mode_enabled() ||
314             pei_data->boot_mode == PEI_BOOT_RESUME) {
315                 ret = prepare_mrc_cache(pei_data);
316                 if (ret)
317                         debug("prepare_mrc_cache failed: %d\n", ret);
318         }
319
320         /* If MRC data is not found we cannot continue S3 resume. */
321         if (pei_data->boot_mode == PEI_BOOT_RESUME && !pei_data->mrc_input) {
322                 debug("Giving up in sdram_initialize: No MRC data\n");
323                 reset_cpu(0);
324         }
325
326         /* Pass console handler in pei_data */
327         pei_data->tx_byte = console_tx_byte;
328
329         debug("PEI data at %p, size %x:\n", pei_data, sizeof(*pei_data));
330
331         data = (char *)CONFIG_X86_MRC_ADDR;
332         if (data) {
333                 int rv;
334                 int (*func)(struct pei_data *);
335                 ulong start;
336
337                 debug("Calling MRC at %p\n", data);
338                 post_code(POST_PRE_MRC);
339                 start = get_timer(0);
340                 func = (int (*)(struct pei_data *))data;
341                 rv = func(pei_data);
342                 post_code(POST_MRC);
343                 if (rv) {
344                         switch (rv) {
345                         case -1:
346                                 printf("PEI version mismatch.\n");
347                                 break;
348                         case -2:
349                                 printf("Invalid memory frequency.\n");
350                                 break;
351                         default:
352                                 printf("MRC returned %x.\n", rv);
353                         }
354                         printf("Nonzero MRC return value.\n");
355                         return -EFAULT;
356                 }
357                 debug("MRC execution time %lu ms\n", get_timer(start));
358         } else {
359                 printf("UEFI PEI System Agent not found.\n");
360                 return -ENOSYS;
361         }
362
363 #if CONFIG_USBDEBUG
364         /* mrc.bin reconfigures USB, so reinit it to have debug */
365         early_usbdebug_init();
366 #endif
367
368         version = readl(MCHBAR_REG(0x5034));
369         debug("System Agent Version %d.%d.%d Build %d\n",
370               version >> 24 , (version >> 16) & 0xff,
371               (version >> 8) & 0xff, version & 0xff);
372         debug("MRC output data length %#x at %p\n", pei_data->mrc_output_len,
373               pei_data->mrc_output);
374
375         /*
376          * Send ME init done for SandyBridge here.  This is done inside the
377          * SystemAgent binary on IvyBridge
378          */
379         dm_pci_read_config16(dev, PCI_DEVICE_ID, &done);
380         done &= BASE_REV_MASK;
381         if (BASE_REV_SNB == done)
382                 intel_early_me_init_done(dev, me_dev, ME_INIT_STATUS_SUCCESS);
383         else
384                 intel_early_me_status(me_dev);
385
386         post_system_agent_init(pei_data);
387         report_memory_config();
388
389         /* S3 resume: don't save scrambler seed or MRC data */
390         if (pei_data->boot_mode != PEI_BOOT_RESUME) {
391                 /*
392                  * This will be copied to SDRAM in reserve_arch(), then written
393                  * to SPI flash in mrccache_save()
394                  */
395                 gd->arch.mrc_output = (char *)pei_data->mrc_output;
396                 gd->arch.mrc_output_len = pei_data->mrc_output_len;
397                 ret = write_seeds_to_cmos(pei_data);
398                 if (ret)
399                         debug("Failed to write seeds to CMOS: %d\n", ret);
400         }
401
402         return 0;
403 }
404
405 int reserve_arch(void)
406 {
407         return mrccache_reserve();
408 }
409
410 static int copy_spd(struct pei_data *peid)
411 {
412         const int gpio_vector[] = {41, 42, 43, 10, -1};
413         int spd_index;
414         const void *blob = gd->fdt_blob;
415         int node, spd_node;
416         int ret, i;
417
418         for (i = 0; ; i++) {
419                 if (gpio_vector[i] == -1)
420                         break;
421                 ret = gpio_requestf(gpio_vector[i], "spd_id%d", i);
422                 if (ret) {
423                         debug("%s: Could not request gpio %d\n", __func__,
424                               gpio_vector[i]);
425                         return ret;
426                 }
427         }
428         spd_index = gpio_get_values_as_int(gpio_vector);
429         debug("spd index %d\n", spd_index);
430         node = fdtdec_next_compatible(blob, 0, COMPAT_MEMORY_SPD);
431         if (node < 0) {
432                 printf("SPD data not found.\n");
433                 return -ENOENT;
434         }
435
436         for (spd_node = fdt_first_subnode(blob, node);
437              spd_node > 0;
438              spd_node = fdt_next_subnode(blob, spd_node)) {
439                 const char *data;
440                 int len;
441
442                 if (fdtdec_get_int(blob, spd_node, "reg", -1) != spd_index)
443                         continue;
444                 data = fdt_getprop(blob, spd_node, "data", &len);
445                 if (len < sizeof(peid->spd_data[0])) {
446                         printf("Missing SPD data\n");
447                         return -EINVAL;
448                 }
449
450                 debug("Using SDRAM SPD data for '%s'\n",
451                       fdt_get_name(blob, spd_node, NULL));
452                 memcpy(peid->spd_data[0], data, sizeof(peid->spd_data[0]));
453                 break;
454         }
455
456         if (spd_node < 0) {
457                 printf("No SPD data found for index %d\n", spd_index);
458                 return -ENOENT;
459         }
460
461         return 0;
462 }
463
464 /**
465  * add_memory_area() - Add a new usable memory area to our list
466  *
467  * Note: @start and @end must not span the first 4GB boundary
468  *
469  * @info:       Place to store memory info
470  * @start:      Start of this memory area
471  * @end:        End of this memory area + 1
472  */
473 static int add_memory_area(struct memory_info *info,
474                            uint64_t start, uint64_t end)
475 {
476         struct memory_area *ptr;
477
478         if (info->num_areas == CONFIG_NR_DRAM_BANKS)
479                 return -ENOSPC;
480
481         ptr = &info->area[info->num_areas];
482         ptr->start = start;
483         ptr->size = end - start;
484         info->total_memory += ptr->size;
485         if (ptr->start < (1ULL << 32))
486                 info->total_32bit_memory += ptr->size;
487         debug("%d: memory %llx size %llx, total now %llx / %llx\n",
488               info->num_areas, ptr->start, ptr->size,
489               info->total_32bit_memory, info->total_memory);
490         info->num_areas++;
491
492         return 0;
493 }
494
495 /**
496  * sdram_find() - Find available memory
497  *
498  * This is a bit complicated since on x86 there are system memory holes all
499  * over the place. We create a list of available memory blocks
500  *
501  * @dev:        Northbridge device
502  */
503 static int sdram_find(struct udevice *dev)
504 {
505         struct memory_info *info = &gd->arch.meminfo;
506         uint32_t tseg_base, uma_size, tolud;
507         uint64_t tom, me_base, touud;
508         uint64_t uma_memory_base = 0;
509         uint64_t uma_memory_size;
510         unsigned long long tomk;
511         uint16_t ggc;
512         u32 val;
513
514         /* Total Memory 2GB example:
515          *
516          *  00000000  0000MB-1992MB  1992MB  RAM     (writeback)
517          *  7c800000  1992MB-2000MB     8MB  TSEG    (SMRR)
518          *  7d000000  2000MB-2002MB     2MB  GFX GTT (uncached)
519          *  7d200000  2002MB-2034MB    32MB  GFX UMA (uncached)
520          *  7f200000   2034MB TOLUD
521          *  7f800000   2040MB MEBASE
522          *  7f800000  2040MB-2048MB     8MB  ME UMA  (uncached)
523          *  80000000   2048MB TOM
524          * 100000000  4096MB-4102MB     6MB  RAM     (writeback)
525          *
526          * Total Memory 4GB example:
527          *
528          *  00000000  0000MB-2768MB  2768MB  RAM     (writeback)
529          *  ad000000  2768MB-2776MB     8MB  TSEG    (SMRR)
530          *  ad800000  2776MB-2778MB     2MB  GFX GTT (uncached)
531          *  ada00000  2778MB-2810MB    32MB  GFX UMA (uncached)
532          *  afa00000   2810MB TOLUD
533          *  ff800000   4088MB MEBASE
534          *  ff800000  4088MB-4096MB     8MB  ME UMA  (uncached)
535          * 100000000   4096MB TOM
536          * 100000000  4096MB-5374MB  1278MB  RAM     (writeback)
537          * 14fe00000   5368MB TOUUD
538          */
539
540         /* Top of Upper Usable DRAM, including remap */
541         dm_pci_read_config32(dev, TOUUD + 4, &val);
542         touud = (uint64_t)val << 32;
543         dm_pci_read_config32(dev, TOUUD, &val);
544         touud |= val;
545
546         /* Top of Lower Usable DRAM */
547         dm_pci_read_config32(dev, TOLUD, &tolud);
548
549         /* Top of Memory - does not account for any UMA */
550         dm_pci_read_config32(dev, 0xa4, &val);
551         tom = (uint64_t)val << 32;
552         dm_pci_read_config32(dev, 0xa0, &val);
553         tom |= val;
554
555         debug("TOUUD %llx TOLUD %08x TOM %llx\n", touud, tolud, tom);
556
557         /* ME UMA needs excluding if total memory <4GB */
558         dm_pci_read_config32(dev, 0x74, &val);
559         me_base = (uint64_t)val << 32;
560         dm_pci_read_config32(dev, 0x70, &val);
561         me_base |= val;
562
563         debug("MEBASE %llx\n", me_base);
564
565         /* TODO: Get rid of all this shifting by 10 bits */
566         tomk = tolud >> 10;
567         if (me_base == tolud) {
568                 /* ME is from MEBASE-TOM */
569                 uma_size = (tom - me_base) >> 10;
570                 /* Increment TOLUD to account for ME as RAM */
571                 tolud += uma_size << 10;
572                 /* UMA starts at old TOLUD */
573                 uma_memory_base = tomk * 1024ULL;
574                 uma_memory_size = uma_size * 1024ULL;
575                 debug("ME UMA base %llx size %uM\n", me_base, uma_size >> 10);
576         }
577
578         /* Graphics memory comes next */
579         dm_pci_read_config16(dev, GGC, &ggc);
580         if (!(ggc & 2)) {
581                 debug("IGD decoded, subtracting ");
582
583                 /* Graphics memory */
584                 uma_size = ((ggc >> 3) & 0x1f) * 32 * 1024ULL;
585                 debug("%uM UMA", uma_size >> 10);
586                 tomk -= uma_size;
587                 uma_memory_base = tomk * 1024ULL;
588                 uma_memory_size += uma_size * 1024ULL;
589
590                 /* GTT Graphics Stolen Memory Size (GGMS) */
591                 uma_size = ((ggc >> 8) & 0x3) * 1024ULL;
592                 tomk -= uma_size;
593                 uma_memory_base = tomk * 1024ULL;
594                 uma_memory_size += uma_size * 1024ULL;
595                 debug(" and %uM GTT\n", uma_size >> 10);
596         }
597
598         /* Calculate TSEG size from its base which must be below GTT */
599         dm_pci_read_config32(dev, 0xb8, &tseg_base);
600         uma_size = (uma_memory_base - tseg_base) >> 10;
601         tomk -= uma_size;
602         uma_memory_base = tomk * 1024ULL;
603         uma_memory_size += uma_size * 1024ULL;
604         debug("TSEG base 0x%08x size %uM\n", tseg_base, uma_size >> 10);
605
606         debug("Available memory below 4GB: %lluM\n", tomk >> 10);
607
608         /* Report the memory regions */
609         add_memory_area(info, 1 << 20, 2 << 28);
610         add_memory_area(info, (2 << 28) + (2 << 20), 4 << 28);
611         add_memory_area(info, (4 << 28) + (2 << 20), tseg_base);
612         add_memory_area(info, 1ULL << 32, touud);
613
614         /* Add MTRRs for memory */
615         mtrr_add_request(MTRR_TYPE_WRBACK, 0, 2ULL << 30);
616         mtrr_add_request(MTRR_TYPE_WRBACK, 2ULL << 30, 512 << 20);
617         mtrr_add_request(MTRR_TYPE_WRBACK, 0xaULL << 28, 256 << 20);
618         mtrr_add_request(MTRR_TYPE_UNCACHEABLE, tseg_base, 16 << 20);
619         mtrr_add_request(MTRR_TYPE_UNCACHEABLE, tseg_base + (16 << 20),
620                          32 << 20);
621
622         /*
623          * If >= 4GB installed then memory from TOLUD to 4GB
624          * is remapped above TOM, TOUUD will account for both
625          */
626         if (touud > (1ULL << 32ULL)) {
627                 debug("Available memory above 4GB: %lluM\n",
628                       (touud >> 20) - 4096);
629         }
630
631         return 0;
632 }
633
634 static void rcba_config(void)
635 {
636         /*
637          *             GFX    INTA -> PIRQA (MSI)
638          * D28IP_P3IP  WLAN   INTA -> PIRQB
639          * D29IP_E1P   EHCI1  INTA -> PIRQD
640          * D26IP_E2P   EHCI2  INTA -> PIRQF
641          * D31IP_SIP   SATA   INTA -> PIRQF (MSI)
642          * D31IP_SMIP  SMBUS  INTB -> PIRQH
643          * D31IP_TTIP  THRT   INTC -> PIRQA
644          * D27IP_ZIP   HDA    INTA -> PIRQA (MSI)
645          *
646          * TRACKPAD                -> PIRQE (Edge Triggered)
647          * TOUCHSCREEN             -> PIRQG (Edge Triggered)
648          */
649
650         /* Device interrupt pin register (board specific) */
651         writel((INTC << D31IP_TTIP) | (NOINT << D31IP_SIP2) |
652                (INTB << D31IP_SMIP) | (INTA << D31IP_SIP), RCB_REG(D31IP));
653         writel(NOINT << D30IP_PIP, RCB_REG(D30IP));
654         writel(INTA << D29IP_E1P, RCB_REG(D29IP));
655         writel(INTA << D28IP_P3IP, RCB_REG(D28IP));
656         writel(INTA << D27IP_ZIP, RCB_REG(D27IP));
657         writel(INTA << D26IP_E2P, RCB_REG(D26IP));
658         writel(NOINT << D25IP_LIP, RCB_REG(D25IP));
659         writel(NOINT << D22IP_MEI1IP, RCB_REG(D22IP));
660
661         /* Device interrupt route registers */
662         writel(DIR_ROUTE(PIRQB, PIRQH, PIRQA, PIRQC), RCB_REG(D31IR));
663         writel(DIR_ROUTE(PIRQD, PIRQE, PIRQF, PIRQG), RCB_REG(D29IR));
664         writel(DIR_ROUTE(PIRQB, PIRQC, PIRQD, PIRQE), RCB_REG(D28IR));
665         writel(DIR_ROUTE(PIRQA, PIRQH, PIRQA, PIRQB), RCB_REG(D27IR));
666         writel(DIR_ROUTE(PIRQF, PIRQE, PIRQG, PIRQH), RCB_REG(D26IR));
667         writel(DIR_ROUTE(PIRQA, PIRQB, PIRQC, PIRQD), RCB_REG(D25IR));
668         writel(DIR_ROUTE(PIRQA, PIRQB, PIRQC, PIRQD), RCB_REG(D22IR));
669
670         /* Enable IOAPIC (generic) */
671         writew(0x0100, RCB_REG(OIC));
672         /* PCH BWG says to read back the IOAPIC enable register */
673         (void)readw(RCB_REG(OIC));
674
675         /* Disable unused devices (board specific) */
676         setbits_le32(RCB_REG(FD), PCH_DISABLE_ALWAYS);
677 }
678
679 int dram_init(void)
680 {
681         struct pei_data pei_data __aligned(8) = {
682                 .pei_version = PEI_VERSION,
683                 .mchbar = DEFAULT_MCHBAR,
684                 .dmibar = DEFAULT_DMIBAR,
685                 .epbar = DEFAULT_EPBAR,
686                 .pciexbar = CONFIG_PCIE_ECAM_BASE,
687                 .smbusbar = SMBUS_IO_BASE,
688                 .wdbbar = 0x4000000,
689                 .wdbsize = 0x1000,
690                 .hpet_address = CONFIG_HPET_ADDRESS,
691                 .rcba = DEFAULT_RCBABASE,
692                 .pmbase = DEFAULT_PMBASE,
693                 .gpiobase = DEFAULT_GPIOBASE,
694                 .thermalbase = 0xfed08000,
695                 .system_type = 0, /* 0 Mobile, 1 Desktop/Server */
696                 .tseg_size = CONFIG_SMM_TSEG_SIZE,
697                 .ts_addresses = { 0x00, 0x00, 0x00, 0x00 },
698                 .ec_present = 1,
699                 .ddr3lv_support = 1,
700                 /*
701                  * 0 = leave channel enabled
702                  * 1 = disable dimm 0 on channel
703                  * 2 = disable dimm 1 on channel
704                  * 3 = disable dimm 0+1 on channel
705                  */
706                 .dimm_channel0_disabled = 2,
707                 .dimm_channel1_disabled = 2,
708                 .max_ddr3_freq = 1600,
709                 .usb_port_config = {
710                         /*
711                          * Empty and onboard Ports 0-7, set to un-used pin
712                          * OC3
713                          */
714                         { 0, 3, 0x0000 }, /* P0= Empty */
715                         { 1, 0, 0x0040 }, /* P1= Left USB 1  (OC0) */
716                         { 1, 1, 0x0040 }, /* P2= Left USB 2  (OC1) */
717                         { 1, 3, 0x0040 }, /* P3= SDCARD      (no OC) */
718                         { 0, 3, 0x0000 }, /* P4= Empty */
719                         { 1, 3, 0x0040 }, /* P5= WWAN        (no OC) */
720                         { 0, 3, 0x0000 }, /* P6= Empty */
721                         { 0, 3, 0x0000 }, /* P7= Empty */
722                         /*
723                          * Empty and onboard Ports 8-13, set to un-used pin
724                          * OC4
725                          */
726                         { 1, 4, 0x0040 }, /* P8= Camera      (no OC) */
727                         { 1, 4, 0x0040 }, /* P9= Bluetooth   (no OC) */
728                         { 0, 4, 0x0000 }, /* P10= Empty */
729                         { 0, 4, 0x0000 }, /* P11= Empty */
730                         { 0, 4, 0x0000 }, /* P12= Empty */
731                         { 0, 4, 0x0000 }, /* P13= Empty */
732                 },
733         };
734         struct udevice *dev, *me_dev;
735         int ret;
736
737         ret = uclass_first_device(UCLASS_NORTHBRIDGE, &dev);
738         if (ret)
739                 return ret;
740         if (!dev)
741                 return -ENODEV;
742         ret = uclass_first_device(UCLASS_SYSCON, &me_dev);
743         if (ret)
744                 return ret;
745         if (!me_dev)
746                 return -ENODEV;
747         debug("Boot mode %d\n", gd->arch.pei_boot_mode);
748         debug("mrc_input %p\n", pei_data.mrc_input);
749         pei_data.boot_mode = gd->arch.pei_boot_mode;
750         ret = copy_spd(&pei_data);
751         if (!ret)
752                 ret = sdram_initialise(dev, me_dev, &pei_data);
753         if (ret)
754                 return ret;
755
756         rcba_config();
757         quick_ram_check();
758
759         writew(0xCAFE, MCHBAR_REG(SSKPD));
760
761         post_code(POST_DRAM);
762
763         ret = sdram_find(dev);
764         if (ret)
765                 return ret;
766
767         gd->ram_size = gd->arch.meminfo.total_32bit_memory;
768
769         return 0;
770 }