coreboot-v2/src/mainboard/kontron/kt690/cache_as_ram_auto.c
<<
>>
Prefs
   1/*
   2 * This file is part of the coreboot project.
   3 *
   4 * Copyright (C) 2008 Advanced Micro Devices, Inc.
   5 * Copyright (C) 2009 coresystems GmbH
   6 *
   7 * This program is free software; you can redistribute it and/or modify
   8 * it under the terms of the GNU General Public License as published by
   9 * the Free Software Foundation; version 2 of the License.
  10 *
  11 * This program is distributed in the hope that it will be useful,
  12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14 * GNU General Public License for more details.
  15 *
  16 * You should have received a copy of the GNU General Public License
  17 * along with this program; if not, write to the Free Software
  18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
  19 */
  20
  21#define ASSEMBLY 1
  22#define __ROMCC__
  23
  24#define RAMINIT_SYSINFO 1
  25#define K8_SET_FIDVID 1
  26#define QRANK_DIMM_SUPPORT 1
  27#if CONFIG_LOGICAL_CPUS==1
  28#define SET_NB_CFG_54 1
  29#endif
  30
  31#define RC0 (6<<8)
  32#define RC1 (7<<8)
  33
  34#define DIMM0 0x50
  35#define DIMM1 0x51
  36
  37#define ICS951462_ADDRESS       0x69
  38#define SMBUS_HUB 0x71
  39
  40#include <stdint.h>
  41#include <string.h>
  42#include <device/pci_def.h>
  43#include <arch/io.h>
  44#include <device/pnp_def.h>
  45#include <arch/romcc_io.h>
  46#include <cpu/x86/lapic.h>
  47#include "option_table.h"
  48#include "pc80/mc146818rtc_early.c"
  49#include "pc80/serial.c"
  50#include "arch/i386/lib/console.c"
  51
  52#define post_code(x) outb(x, 0x80)
  53
  54#include <cpu/amd/model_fxx_rev.h>
  55#include "northbridge/amd/amdk8/raminit.h"
  56#include "cpu/amd/model_fxx/apic_timer.c"
  57#include "lib/delay.c"
  58
  59#include "cpu/x86/lapic/boot_cpu.c"
  60#include "northbridge/amd/amdk8/reset_test.c"
  61#include "northbridge/amd/amdk8/debug.c"
  62#include "superio/winbond/w83627dhg/w83627dhg_early_serial.c"
  63
  64#include "cpu/amd/mtrr/amd_earlymtrr.c"
  65#include "cpu/x86/bist.h"
  66
  67#include "northbridge/amd/amdk8/setup_resource_map.c"
  68
  69#include "southbridge/amd/rs690/rs690_early_setup.c"
  70#include "southbridge/amd/sb600/sb600_early_setup.c"
  71
  72/* CAN'T BE REMOVED! crt0.S will use it. I don't know WHY!*/
  73static void memreset(int controllers, const struct mem_controller *ctrl)
  74{
  75}
  76
  77/* called in raminit_f.c */
  78static inline void activate_spd_rom(const struct mem_controller *ctrl)
  79{
  80}
  81
  82/*called in raminit_f.c */
  83static inline int spd_read_byte(u32 device, u32 address)
  84{
  85        return smbus_read_byte(device, address);
  86}
  87
  88#include "northbridge/amd/amdk8/amdk8.h"
  89#include "northbridge/amd/amdk8/incoherent_ht.c"
  90#include "northbridge/amd/amdk8/raminit_f.c"
  91#include "northbridge/amd/amdk8/coherent_ht.c"
  92#include "lib/generic_sdram.c"
  93#include "resourcemap.c"
  94
  95#include "cpu/amd/dualcore/dualcore.c"
  96
  97#include "cpu/amd/car/copy_and_run.c"
  98#include "cpu/amd/car/post_cache_as_ram.c"
  99
 100#include "cpu/amd/model_fxx/init_cpus.c"
 101
 102#include "cpu/amd/model_fxx/fidvid.c"
 103
 104#if CONFIG_USE_FALLBACK_IMAGE == 1
 105
 106#include "northbridge/amd/amdk8/early_ht.c"
 107
 108void failover_process(unsigned long bist, unsigned long cpu_init_detectedx)
 109{
 110        /* Is this a cpu only reset? Is this a secondary cpu? */
 111        if ((cpu_init_detectedx) || (!boot_cpu())) {
 112                if (last_boot_normal()) {       /* RTC already inited */
 113                        goto normal_image;
 114                } else {
 115                        goto fallback_image;
 116                }
 117        }
 118        /* Nothing special needs to be done to find bus 0 */
 119        /* Allow the HT devices to be found */
 120        enumerate_ht_chain();
 121
 122        /* sb600_lpc_port80(); */
 123        sb600_pci_port80();
 124
 125        /* Is this a deliberate reset by the bios */
 126        if (bios_reset_detected() && last_boot_normal()) {
 127                goto normal_image;
 128        }
 129        /* This is the primary cpu how should I boot? */
 130        else if (do_normal_boot()) {
 131                goto normal_image;
 132        } else {
 133                goto fallback_image;
 134        }
 135normal_image:
 136        post_code(0x23);
 137        __asm__ volatile ("jmp __normal_image": /* outputs */
 138                          :"a" (bist), "b"(cpu_init_detectedx)  /* inputs */);
 139
 140fallback_image:
 141        post_code(0x25);
 142}
 143#endif                          /* CONFIG_USE_FALLBACK_IMAGE == 1 */
 144
 145void real_main(unsigned long bist, unsigned long cpu_init_detectedx);
 146
 147void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx)
 148{
 149
 150#if CONFIG_USE_FALLBACK_IMAGE == 1
 151        failover_process(bist, cpu_init_detectedx);
 152#endif
 153        real_main(bist, cpu_init_detectedx);
 154}
 155
 156void real_main(unsigned long bist, unsigned long cpu_init_detectedx)
 157{
 158        device_t dev;
 159        static const u16 spd_addr[] = { DIMM0, 0, 0, 0, DIMM1, 0, 0, 0, };
 160        int needs_reset = 0;
 161        u32 bsp_apicid = 0;
 162        msr_t msr;
 163        struct cpuid_result cpuid1;
 164        struct sys_info *sysinfo = (struct sys_info *)(CONFIG_DCACHE_RAM_BASE + CONFIG_DCACHE_RAM_SIZE - CONFIG_DCACHE_RAM_GLOBAL_VAR_SIZE);
 165
 166
 167        if (bist == 0) {
 168                bsp_apicid = init_cpus(cpu_init_detectedx, sysinfo);
 169        }
 170
 171        enable_rs690_dev8();
 172        sb600_lpc_init();
 173
 174        dev=PNP_DEV(0x2e, W83627DHG_SP1);
 175        w83627dhg_enable_serial(dev, CONFIG_TTYS0_BASE);
 176        uart_init();
 177        console_init();
 178
 179        /* Halt if there was a built in self test failure */
 180        report_bist_failure(bist);
 181        printk_debug("bsp_apicid=0x%x\n", bsp_apicid);
 182
 183        setup_kt690_resource_map();
 184
 185        setup_coherent_ht_domain();
 186
 187#if CONFIG_LOGICAL_CPUS==1
 188        /* It is said that we should start core1 after all core0 launched */
 189        wait_all_core0_started();
 190        start_other_cores();
 191#endif
 192        wait_all_aps_started(bsp_apicid);
 193
 194        ht_setup_chains_x(sysinfo);
 195
 196        /* run _early_setup before soft-reset. */
 197        rs690_early_setup();
 198        sb600_early_setup();
 199
 200        /* Check to see if processor is capable of changing FIDVID  */
 201        /* otherwise it will throw a GP# when reading FIDVID_STATUS */
 202        cpuid1 = cpuid(0x80000007);
 203        if( (cpuid1.edx & 0x6) == 0x6 ) {
 204
 205                /* Read FIDVID_STATUS */
 206                msr=rdmsr(0xc0010042);
 207                printk_debug("begin msr fid, vid: hi=0x%x, lo=0x%x\n", msr.hi, msr.lo);
 208
 209                enable_fid_change();
 210                enable_fid_change_on_sb(sysinfo->sbbusn, sysinfo->sbdn);
 211                init_fidvid_bsp(bsp_apicid);
 212
 213                /* show final fid and vid */
 214                msr=rdmsr(0xc0010042);
 215                printk_debug("end msr fid, vid: hi=0x%x, lo=0x%x\n", msr.hi, msr.lo);
 216
 217        } else {
 218                printk_debug("Changing FIDVID not supported\n");
 219                printk_spew("... because cpuid returned %08x\n", cpuid1.edx);
 220        }
 221
 222        needs_reset = optimize_link_coherent_ht();
 223        needs_reset |= optimize_link_incoherent_ht(sysinfo);
 224        rs690_htinit();
 225        printk_debug("needs_reset=0x%x\n", needs_reset);
 226
 227
 228        if (needs_reset) {
 229                print_info("ht reset -\r\n");
 230                soft_reset();
 231        }
 232
 233        allow_all_aps_stop(bsp_apicid);
 234
 235        /* It's the time to set ctrl now; */
 236        printk_debug("sysinfo->nodes: %2x  sysinfo->ctrl: %2x  spd_addr: %2x\n",
 237                     sysinfo->nodes, sysinfo->ctrl, spd_addr);
 238        fill_mem_ctrl(sysinfo->nodes, sysinfo->ctrl, spd_addr);
 239        sdram_initialize(sysinfo->nodes, sysinfo->ctrl, sysinfo);
 240
 241        rs690_before_pci_init();
 242        sb600_before_pci_init();
 243
 244        post_cache_as_ram();
 245}
 246
lxr.linux.no kindly hosted by Redpill Linpro AS, provider of Linux consulting and operations services since 1995.