blob: fd02f7de7f41c956539cca2c3c078e0d507992f6 [file] [log] [blame]
Kerry She7b7b2c92011-09-08 21:16:19 +08001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2011 Advanced Micro Devices, Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
20
21#ifndef _EAX_785E_CFG_H_
22#define _EAX_785E_CFG_H_
23
24/**
25 * @def BIOS_SIZE_1M
26 * @def BIOS_SIZE_2M
27 * @def BIOS_SIZE_4M
28 * @def BIOS_SIZE_8M
29 */
30#define BIOS_SIZE_1M 0
31#define BIOS_SIZE_2M 1
32#define BIOS_SIZE_4M 3
33#define BIOS_SIZE_8M 7
34
35/* In SB800, default ROM size is 1M Bytes, if your platform ROM
36 * bigger than 1M you have to set the ROM size outside CIMx module and
37 * before AGESA module get call.
38 */
39#ifndef BIOS_SIZE
Patrick Georgie1667822012-05-05 15:29:32 +020040#if CONFIG_COREBOOT_ROMSIZE_KB_1024
Kerry She7b7b2c92011-09-08 21:16:19 +080041 #define BIOS_SIZE BIOS_SIZE_1M
42#elif CONFIG_COREBOOT_ROMSIZE_KB_2048 == 1
43 #define BIOS_SIZE BIOS_SIZE_2M
44#elif CONFIG_COREBOOT_ROMSIZE_KB_4096 == 1
45 #define BIOS_SIZE BIOS_SIZE_4M
46#elif CONFIG_COREBOOT_ROMSIZE_KB_8192 == 1
47 #define BIOS_SIZE BIOS_SIZE_8M
48#endif
49#endif
50
51/**
52 * @def SPREAD_SPECTRUM
53 * @brief
54 * 0 - Disable Spread Spectrum function
55 * 1 - Enable Spread Spectrum function
56 */
57#define SPREAD_SPECTRUM 0
58
59/**
60 * @def SB_HPET_TIMER
Paul Menzel522b5562013-02-21 17:09:01 +010061 * @brief
Kerry She7b7b2c92011-09-08 21:16:19 +080062 * 0 - Disable hpet
63 * 1 - Enable hpet
64 */
65#define HPET_TIMER 1
66
67/**
68 * @def USB_CONFIG
69 * @brief bit[0-6] used to control USB
70 * 0 - Disable
71 * 1 - Enable
72 * Usb Ohci1 Contoller (Bus 0 Dev 18 Func0) is define at BIT0
73 * Usb Ehci1 Contoller (Bus 0 Dev 18 Func2) is define at BIT1
74 * Usb Ohci2 Contoller (Bus 0 Dev 19 Func0) is define at BIT2
75 * Usb Ehci2 Contoller (Bus 0 Dev 19 Func2) is define at BIT3
76 * Usb Ohci3 Contoller (Bus 0 Dev 22 Func0) is define at BIT4
77 * Usb Ehci3 Contoller (Bus 0 Dev 22 Func2) is define at BIT5
78 * Usb Ohci4 Contoller (Bus 0 Dev 20 Func5) is define at BIT6
79 */
80#define USB_CONFIG 0x7F
81
82/**
83 * @def PCI_CLOCK_CTRL
Paul Menzel522b5562013-02-21 17:09:01 +010084 * @brief bit[0-4] used for PCI Slots Clock Control,
Kerry She7b7b2c92011-09-08 21:16:19 +080085 * 0 - disable
86 * 1 - enable
87 * PCI SLOT 0 define at BIT0
88 * PCI SLOT 1 define at BIT1
89 * PCI SLOT 2 define at BIT2
90 * PCI SLOT 3 define at BIT3
91 * PCI SLOT 4 define at BIT4
92 */
93#define PCI_CLOCK_CTRL 0x1F
94
95/**
96 * @def SATA_CONTROLLER
Paul Menzel522b5562013-02-21 17:09:01 +010097 * @brief INCHIP Sata Controller
Kerry She7b7b2c92011-09-08 21:16:19 +080098 */
99#define SATA_CONTROLLER CIMX_OPTION_ENABLED
100
101/**
102 * @def SATA_MODE
Paul Menzel522b5562013-02-21 17:09:01 +0100103 * @brief INCHIP Sata Controller Mode
Kerry She7b7b2c92011-09-08 21:16:19 +0800104 * NOTE: DO NOT ALLOW SATA & IDE use same mode
105 */
Kerry Sheh56ed40a2011-10-11 17:27:26 +0800106#define SATA_MODE CONFIG_SB800_SATA_MODE
Kerry She7b7b2c92011-09-08 21:16:19 +0800107
108/**
Paul Menzel522b5562013-02-21 17:09:01 +0100109 * @brief INCHIP Sata IDE Controller Mode
Kerry She7b7b2c92011-09-08 21:16:19 +0800110 */
111#define IDE_LEGACY_MODE 0
112#define IDE_NATIVE_MODE 1
113
114/**
115 * @def SATA_IDE_MODE
Paul Menzel522b5562013-02-21 17:09:01 +0100116 * @brief INCHIP Sata IDE Controller Mode
Kerry She7b7b2c92011-09-08 21:16:19 +0800117 * NOTE: DO NOT ALLOW SATA & IDE use same mode
118 */
119#define SATA_IDE_MODE IDE_LEGACY_MODE
120
121/**
122 * @def EXTERNAL_CLOCK
123 * @brief 00/10: Reference clock from crystal oscillator via
124 * PAD_XTALI and PAD_XTALO
125 *
126 * @def INTERNAL_CLOCK
127 * @brief 01/11: Reference clock from internal clock through
128 * CP_PLL_REFCLK_P and CP_PLL_REFCLK_N via RDL
129 */
130#define EXTERNAL_CLOCK 0x00
131#define INTERNAL_CLOCK 0x01
132
133/* NOTE: inagua have to using internal clock,
134 * otherwise can not detect sata drive
135 */
136#define SATA_CLOCK_SOURCE INTERNAL_CLOCK
137
138/**
139 * @def SATA_PORT_MULT_CAP_RESERVED
140 * @brief 1 ON, 0 0FF
141 */
142#define SATA_PORT_MULT_CAP_RESERVED 1
143
144
145/**
146 * @def AZALIA_AUTO
147 * @brief Detect Azalia controller automatically.
148 *
149 * @def AZALIA_DISABLE
150 * @brief Disable Azalia controller.
151
152 * @def AZALIA_ENABLE
153 * @brief Enable Azalia controller.
154 */
155#define AZALIA_AUTO 0
156#define AZALIA_DISABLE 1
157#define AZALIA_ENABLE 2
158
159/**
Paul Menzel522b5562013-02-21 17:09:01 +0100160 * @brief INCHIP HDA controller
Kerry She7b7b2c92011-09-08 21:16:19 +0800161 */
162#define AZALIA_CONTROLLER AZALIA_AUTO
163
164/**
165 * @def AZALIA_PIN_CONFIG
166 * @brief
167 * 0 - disable
168 * 1 - enable
169 */
170#define AZALIA_PIN_CONFIG 1
171
172/**
173 * @def AZALIA_SDIN_PIN
174 * @brief
175 * SDIN0 is define at BIT0 & BIT1
176 * 00 - GPIO PIN
177 * 01 - Reserved
178 * 10 - As a Azalia SDIN pin
179 * SDIN1 is define at BIT2 & BIT3
180 * SDIN2 is define at BIT4 & BIT5
181 * SDIN3 is define at BIT6 & BIT7
182 */
183//#define AZALIA_SDIN_PIN 0xAA
184#define AZALIA_SDIN_PIN 0x2A
185
186/**
187 * @def GPP_CONTROLLER
188 */
189#define GPP_CONTROLLER CIMX_OPTION_ENABLED
190
191/**
192 * @def GPP_CFGMODE
193 * @brief GPP Link Configuration
194 * four possible configuration:
195 * GPP_CFGMODE_X4000
196 * GPP_CFGMODE_X2200
197 * GPP_CFGMODE_X2110
198 * GPP_CFGMODE_X1111
199 */
200#define GPP_CFGMODE GPP_CFGMODE_X1111
201
202/**
203 * @def NB_SB_GEN2
204 * 0 - Disable
205 * 1 - Enable
206 */
207#define NB_SB_GEN2 TRUE
208
209/**
210 * @def SB_GEN2
211 * 0 - Disable
212 * 1 - Enable
213 */
214#define SB_GPP_GEN2 TRUE
215
216/**
217 * @def SB_GPP_UNHIDE_PORTS
218 * TRUE - ports visable always, even port empty
219 * FALSE - ports invisable if port empty
220 */
221#define SB_GPP_UNHIDE_PORTS FALSE
222
223/**
224 * @def GEC_CONFIG
225 * 0 - Enable
226 * 1 - Disable
227 */
228#define GEC_CONFIG 0
229
230/**
231 * @def SIO_HWM_BASE_ADDRESS Super IO HWM base address
232 */
233#define SIO_HWM_BASE_ADDRESS 0x290
234
235#endif