blob: 7c10e418445494efce8cfd13ff1925bd7f6407b1 [file] [log] [blame]
Aaron Durbin76c37002012-10-30 09:03:43 -05001/*
2 * coreboot UEFI PEI wrapper
3 *
4 * Copyright (c) 2011, Google Inc.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are met:
9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * * Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * * Neither the name of Google Inc. nor the
15 * names of its contributors may be used to endorse or promote products
16 * derived from this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 * ARE DISCLAIMED. IN NO EVENT SHALL GOOGLE INC BE LIABLE FOR ANY DIRECT,
22 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
25 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
29
30#ifndef PEI_DATA_H
31#define PEI_DATA_H
32
33typedef void (*tx_byte_func)(unsigned char byte);
Stefan Reinauer1cc34162013-06-27 15:59:18 -070034#define PEI_VERSION 11
Aaron Durbin8256a9b2012-11-29 17:18:53 -060035
Aaron Durbin76c37002012-10-30 09:03:43 -050036struct pei_data
37{
38 uint32_t pei_version;
39 uint32_t mchbar;
40 uint32_t dmibar;
41 uint32_t epbar;
42 uint32_t pciexbar;
43 uint16_t smbusbar;
44 uint32_t wdbbar;
45 uint32_t wdbsize;
46 uint32_t hpet_address;
47 uint32_t rcba;
48 uint32_t pmbase;
49 uint32_t gpiobase;
Aaron Durbin8256a9b2012-11-29 17:18:53 -060050 uint32_t temp_mmio_base;
Aaron Durbin76c37002012-10-30 09:03:43 -050051 uint32_t system_type; // 0 Mobile, 1 Desktop/Server
52 uint32_t tseg_size;
53 uint8_t spd_addresses[4];
Aaron Durbin76c37002012-10-30 09:03:43 -050054 int boot_mode;
55 int ec_present;
Stefan Reinauer1cc34162013-06-27 15:59:18 -070056 int gbe_enable;
Aaron Durbin76c37002012-10-30 09:03:43 -050057 // 0 = leave channel enabled
58 // 1 = disable dimm 0 on channel
59 // 2 = disable dimm 1 on channel
60 // 3 = disable dimm 0+1 on channel
61 int dimm_channel0_disabled;
62 int dimm_channel1_disabled;
Aaron Durbin76c37002012-10-30 09:03:43 -050063 /* Data read from flash and passed into MRC */
64 unsigned char *mrc_input;
65 unsigned int mrc_input_len;
66 /* Data from MRC that should be saved to flash */
67 unsigned char *mrc_output;
68 unsigned int mrc_output_len;
69 /*
Aaron Durbin8256a9b2012-11-29 17:18:53 -060070 * Max frequency DDR3 could be ran at. Could be one of four values: 800,
71 * 1067, 1333, 1600
72 */
Aaron Durbin76c37002012-10-30 09:03:43 -050073 uint32_t max_ddr3_freq;
74 /*
75 * USB Port Configuration:
76 * [0] = enable
77 * [1] = overcurrent pin
78 * [2] = length
79 *
80 * Ports 0-7 can be mapped to OC0-OC3
81 * Ports 8-13 can be mapped to OC4-OC7
82 *
83 * Port Length
84 * MOBILE:
85 * < 0x050 = Setting 1 (back panel, 1-5in, lowest tx amplitude)
86 * < 0x140 = Setting 2 (back panel, 5-14in, highest tx amplitude)
87 * DESKTOP:
88 * < 0x080 = Setting 1 (front/back panel, <8in, lowest tx amplitude)
89 * < 0x130 = Setting 2 (back panel, 8-13in, higher tx amplitude)
90 * < 0x150 = Setting 3 (back panel, 13-15in, higest tx amplitude)
91 */
92 uint16_t usb_port_config[16][3];
93 /* SPD data array for onboard RAM. Specify address 0xf0,
94 * 0xf1, 0xf2, 0xf3 to index one of the 4 slots in
95 * spd_address for a given "DIMM".
96 */
97 uint8_t spd_data[4][256];
98 tx_byte_func tx_byte;
Aaron Durbin76c37002012-10-30 09:03:43 -050099} __attribute__((packed));
100
101#endif