blob: 7ee4f216e0bee0eca8c10488a310c75007f2c1c3 [file] [log] [blame]
Martin Rothe6df0412014-07-28 14:22:32 -06001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2013 Google Inc.
5 * Copyright (C) 2013 Sage Electronic Engineering, LLC.
York Yang4a91f642014-11-25 15:54:08 -07006 * Copyright (C) 2014 Intel Corporation
Martin Rothe6df0412014-07-28 14:22:32 -06007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; version 2 of the License.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
Martin Rothe6df0412014-07-28 14:22:32 -060016 */
17
Ben Gardnerfa6014a2015-12-08 21:20:25 -060018#include <soc/romstage.h>
Marc Jones78687972015-04-22 23:16:31 -060019#include <drivers/intel/fsp1_0/fsp_util.h>
Martin Roth14ca52b2014-12-02 21:51:03 -070020#include <pc80/mc146818rtc.h>
21#include <console/console.h>
Ben Gardnerfa6014a2015-12-08 21:20:25 -060022#include <soc/gpio.h>
23#include <soc/intel/fsp_baytrail/chip.h>
Martin Rothe6df0412014-07-28 14:22:32 -060024
25/**
26 * /brief mainboard call for setup that needs to be done before fsp init
27 *
28 */
29void early_mainboard_romstage_entry()
30{
31
32}
33
34/**
35 * Get function disables - most of these will be done automatically
36 * @param fd_mask
37 * @param fd2_mask
38 */
39void get_func_disables(uint32_t *fd_mask, uint32_t *fd2_mask)
40{
41
42}
43
Martin Rothe6df0412014-07-28 14:22:32 -060044/**
45 * /brief mainboard call for setup that needs to be done after fsp init
46 *
47 */
Martin Rothe6df0412014-07-28 14:22:32 -060048void late_mainboard_romstage_entry()
49{
50
51}
52
Martin Rothe6df0412014-07-28 14:22:32 -060053void romstage_fsp_rt_buffer_callback(FSP_INIT_RT_BUFFER *FspRtBuffer)
54{
55 UPD_DATA_REGION *UpdData = FspRtBuffer->Common.UpdDataRgnPtr;
Martin Roth14ca52b2014-12-02 21:51:03 -070056 u8 use_xhci = UpdData->PcdEnableXhci;
Martin Roth9aadeb52014-12-14 14:12:11 -070057 u8 gpio5 = 0;
Martin Rothe6df0412014-07-28 14:22:32 -060058
York Yang4a91f642014-11-25 15:54:08 -070059 /*
Martin Roth9aadeb52014-12-14 14:12:11 -070060 * Minnow Max Board
61 * Read SSUS gpio 5 to determine memory type
62 * 0 : 1GB SKU uses 2Gb density memory
63 * 1 : 2GB SKU uses 4Gb density memory
York Yang4a91f642014-11-25 15:54:08 -070064 *
Martin Roth9aadeb52014-12-14 14:12:11 -070065 * devicetree.cb assumes 1GB SKU board
66 */
67 configure_ssus_gpio(5, PAD_FUNC0 | PAD_PULL_DISABLE, PAD_VAL_INPUT);
68 gpio5 = read_ssus_gpio(5);
69 if (gpio5)
York Yang4a91f642014-11-25 15:54:08 -070070 UpdData->PcdMemoryParameters.DIMMDensity
71 += (DIMM_DENSITY_4G_BIT - DIMM_DENSITY_2G_BIT);
Martin Roth9aadeb52014-12-14 14:12:11 -070072 printk(BIOS_NOTICE, "%s GB Minnowboard Max detected.\n",
73 gpio5 ? "2 / 4" : "1" );
Martin Roth14ca52b2014-12-02 21:51:03 -070074 /* Update XHCI UPD value if required */
75 get_option(&use_xhci, "use_xhci_over_ehci");
76 if ((use_xhci < 2) && (use_xhci != UpdData->PcdEnableXhci)) {
77 UpdData->PcdEnableXhci = use_xhci;
78 printk(FSP_INFO_LEVEL, "Xhci updated from CMOS:\t\t\t%s\n",
79 UpdData->PcdEnableXhci?"Enabled":"Disabled");
80 }
81
Martin Rothe6df0412014-07-28 14:22:32 -060082 return;
83}