blob: 563730eae63b62f0bb034b87196647f05df2d35a [file] [log] [blame]
Aaron Durbin76c37002012-10-30 09:03:43 -05001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2008-2009 coresystems GmbH
5 * Copyright (C) 2012 The Chromium OS Authors. All rights reserved.
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#ifndef SOUTHBRIDGE_INTEL_LYNXPOINT_PCH_H
22#define SOUTHBRIDGE_INTEL_LYNXPOINT_PCH_H
23
24
25/*
26 * Lynx Point PCH PCI Devices:
27 *
28 * Bus 0:Device 31:Function 0 LPC Controller1
29 * Bus 0:Device 31:Function 2 SATA Controller #1
30 * Bus 0:Device 31:Function 3 SMBus Controller
31 * Bus 0:Device 31:Function 5 SATA Controller #22
32 * Bus 0:Device 31:Function 6 Thermal Subsystem
33 * Bus 0:Device 29:Function 03 USB EHCI Controller #1
34 * Bus 0:Device 26:Function 03 USB EHCI Controller #2
35 * Bus 0:Device 28:Function 0 PCI Express* Port 1
36 * Bus 0:Device 28:Function 1 PCI Express Port 2
37 * Bus 0:Device 28:Function 2 PCI Express Port 3
38 * Bus 0:Device 28:Function 3 PCI Express Port 4
39 * Bus 0:Device 28:Function 4 PCI Express Port 5
40 * Bus 0:Device 28:Function 5 PCI Express Port 6
41 * Bus 0:Device 28:Function 6 PCI Express Port 7
42 * Bus 0:Device 28:Function 7 PCI Express Port 8
43 * Bus 0:Device 27:Function 0 IntelĀ® High Definition Audio Controller
44 * Bus 0:Device 25:Function 0 Gigabit Ethernet Controller
45 * Bus 0:Device 22:Function 0 IntelĀ® Management Engine Interface #1
46 * Bus 0:Device 22:Function 1 Intel Management Engine Interface #2
47 * Bus 0:Device 22:Function 2 IDE-R
48 * Bus 0:Device 22:Function 3 KT
49 * Bus 0:Device 20:Function 0 xHCI Controller
50*/
51
52/* PCH types */
53
54/* PCH stepping values for LPC device */
55
56/*
57 * It does not matter where we put the SMBus I/O base, as long as we
58 * keep it consistent and don't interfere with other devices. Stage2
59 * will relocate this anyways.
60 * Our solution is to have SMB initialization move the I/O to SMBUS_IO_BASE
61 * again. But handling static BARs is a generic problem that should be
62 * solved in the device allocator.
63 */
64#define SMBUS_IO_BASE 0x0400
65#define SMBUS_SLAVE_ADDR 0x24
Aaron Durbin76c37002012-10-30 09:03:43 -050066#define DEFAULT_PMBASE 0x0500
67
Duncan Laurie045f1532012-12-17 11:29:10 -080068#if CONFIG_INTEL_LYNXPOINT_LP
69#define DEFAULT_GPIOBASE 0x1000
70#define DEFAULT_GPIOSIZE 0x400
71#else
72#define DEFAULT_GPIOBASE 0x480
73#define DEFAULT_GPIOSIZE 0x80
74#endif
75
Aaron Durbin76c37002012-10-30 09:03:43 -050076#define HPET_ADDR 0xfed00000
77#define DEFAULT_RCBA 0xfed1c000
78
79#ifndef __ACPI__
80#define DEBUG_PERIODIC_SMIS 0
81
82#if defined (__SMM__) && !defined(__ASSEMBLER__)
83void intel_pch_finalize_smm(void);
84#endif
85
Aaron Durbin239c2e82012-12-19 11:31:17 -060086
87/* State Machine configuration. */
88#define RCBA_REG_SIZE_MASK 0x8000
89#define RCBA_REG_SIZE_16 0x8000
90#define RCBA_REG_SIZE_32 0x0000
91#define RCBA_COMMAND_MASK 0x000f
92#define RCBA_COMMAND_SET 0x0001
93#define RCBA_COMMAND_READ 0x0002
94#define RCBA_COMMAND_RMW 0x0003
95#define RCBA_COMMAND_END 0x0007
96
97#define RCBA_ENCODE_COMMAND(command_, reg_, mask_, or_value_) \
98 { .command = command_, \
99 .reg = reg_, \
100 .mask = mask_, \
101 .or_value = or_value_ \
102 }
103#define RCBA_SET_REG_32(reg_, value_) \
104 RCBA_ENCODE_COMMAND(RCBA_REG_SIZE_32|RCBA_COMMAND_SET, reg_, 0, value_)
105#define RCBA_READ_REG_32(reg_) \
106 RCBA_ENCODE_COMMAND(RCBA_REG_SIZE_32|RCBA_COMMAND_READ, reg_, 0, 0)
107#define RCBA_RMW_REG_32(reg_, mask_, or_) \
108 RCBA_ENCODE_COMMAND(RCBA_REG_SIZE_32|RCBA_COMMAND_RMW, reg_, mask_, or_)
109#define RCBA_SET_REG_16(reg_, value_) \
110 RCBA_ENCODE_COMMAND(RCBA_REG_SIZE_16|RCBA_COMMAND_SET, reg_, 0, value_)
111#define RCBA_READ_REG_16(reg_) \
112 RCBA_ENCODE_COMMAND(RCBA_REG_SIZE_16|RCBA_COMMAND_READ, reg_, 0, 0)
113#define RCBA_RMW_REG_16(reg_, mask_, or_) \
114 RCBA_ENCODE_COMMAND(RCBA_REG_SIZE_16|RCBA_COMMAND_RMW, reg_, mask_, or_)
115#define RCBA_END_CONFIG \
116 RCBA_ENCODE_COMMAND(RCBA_COMMAND_END, 0, 0, 0)
117
118struct rcba_config_instruction
119{
120 u16 command;
121 u16 reg;
122 u32 mask;
123 u32 or_value;
124};
125
Duncan Laurie8584b222013-02-15 13:52:28 -0800126#if !defined(__ASSEMBLER__) && !defined(__ROMCC__)
127void pch_config_rcba(const struct rcba_config_instruction *rcba_config);
128#if !defined(__PRE_RAM__) && !defined(__SMM__)
129#include <device/device.h>
130#include <arch/acpi.h>
131#include "chip.h"
132int pch_silicon_revision(void);
133int pch_silicon_type(void);
134int pch_silicon_supported(int type, int rev);
135void pch_enable(device_t dev);
136void pch_iobp_update(u32 address, u32 andvalue, u32 orvalue);
137#if CONFIG_ELOG
138void pch_log_state(void);
139#endif
140void acpi_create_intel_hpet(acpi_hpet_t * hpet);
141
142/* These helpers are for performing SMM relocation. */
143void southbridge_smm_init(void);
144void southbridge_trigger_smi(void);
145void southbridge_clear_smi_status(void);
146#else
147void enable_smbus(void);
148void enable_usb_bar(void);
149int smbus_read_byte(unsigned device, unsigned address);
150int early_spi_read(u32 offset, u32 size, u8 *buffer);
Aaron Durbin239c2e82012-12-19 11:31:17 -0600151int early_pch_init(const void *gpio_map,
152 const struct rcba_config_instruction *rcba_config);
Aaron Durbin76c37002012-10-30 09:03:43 -0500153#endif
Duncan Laurie045f1532012-12-17 11:29:10 -0800154/*
155 * get GPIO pin value
156 */
157int get_gpio(int gpio_num);
158/*
159 * get a number comprised of multiple GPIO values. gpio_num_array points to
160 * the array of gpio pin numbers to scan, terminated by -1.
161 */
162unsigned get_gpios(const int *gpio_num_array);
Aaron Durbin76c37002012-10-30 09:03:43 -0500163#endif
164
165#define MAINBOARD_POWER_OFF 0
166#define MAINBOARD_POWER_ON 1
167#define MAINBOARD_POWER_KEEP 2
168
169#ifndef CONFIG_MAINBOARD_POWER_ON_AFTER_POWER_FAIL
170#define CONFIG_MAINBOARD_POWER_ON_AFTER_POWER_FAIL MAINBOARD_POWER_ON
171#endif
172
173/* PCI Configuration Space (D30:F0): PCI2PCI */
174#define PSTS 0x06
175#define SMLT 0x1b
176#define SECSTS 0x1e
177#define INTR 0x3c
178#define BCTRL 0x3e
179#define SBR (1 << 6)
180#define SEE (1 << 1)
181#define PERE (1 << 0)
182
183#define PCH_EHCI1_DEV PCI_DEV(0, 0x1d, 0)
184#define PCH_EHCI2_DEV PCI_DEV(0, 0x1a, 0)
185#define PCH_ME_DEV PCI_DEV(0, 0x16, 0)
186#define PCH_PCIE_DEV_SLOT 28
187
188/* PCI Configuration Space (D31:F0): LPC */
189#define PCH_LPC_DEV PCI_DEV(0, 0x1f, 0)
190#define SERIRQ_CNTL 0x64
191
192#define GEN_PMCON_1 0xa0
193#define GEN_PMCON_2 0xa2
194#define GEN_PMCON_3 0xa4
Aaron Durbinb9ea8b32012-11-02 09:10:30 -0500195#define PMIR 0xac
196#define PMIR_CF9LOCK (1 << 31)
197#define PMIR_CF9GR (1 << 20)
Aaron Durbin76c37002012-10-30 09:03:43 -0500198
199/* GEN_PMCON_3 bits */
200#define RTC_BATTERY_DEAD (1 << 2)
201#define RTC_POWER_FAILED (1 << 1)
202#define SLEEP_AFTER_POWER_FAIL (1 << 0)
203
204#define PMBASE 0x40
205#define ACPI_CNTL 0x44
206#define BIOS_CNTL 0xDC
207#define GPIO_BASE 0x48 /* LPC GPIO Base Address Register */
208#define GPIO_CNTL 0x4C /* LPC GPIO Control Register */
209#define GPIO_ROUT 0xb8
210
211#define PIRQA_ROUT 0x60
212#define PIRQB_ROUT 0x61
213#define PIRQC_ROUT 0x62
214#define PIRQD_ROUT 0x63
215#define PIRQE_ROUT 0x68
216#define PIRQF_ROUT 0x69
217#define PIRQG_ROUT 0x6A
218#define PIRQH_ROUT 0x6B
219
220#define LPC_IO_DEC 0x80 /* IO Decode Ranges Register */
221#define LPC_EN 0x82 /* LPC IF Enables Register */
222#define CNF2_LPC_EN (1 << 13) /* 0x4e/0x4f */
223#define CNF1_LPC_EN (1 << 12) /* 0x2e/0x2f */
224#define MC_LPC_EN (1 << 11) /* 0x62/0x66 */
225#define KBC_LPC_EN (1 << 10) /* 0x60/0x64 */
226#define GAMEH_LPC_EN (1 << 9) /* 0x208/0x20f */
227#define GAMEL_LPC_EN (1 << 8) /* 0x200/0x207 */
228#define FDD_LPC_EN (1 << 3) /* LPC_IO_DEC[12] */
229#define LPT_LPC_EN (1 << 2) /* LPC_IO_DEC[9:8] */
230#define COMB_LPC_EN (1 << 1) /* LPC_IO_DEC[6:4] */
231#define COMA_LPC_EN (1 << 0) /* LPC_IO_DEC[2:0] */
232#define LPC_GEN1_DEC 0x84 /* LPC IF Generic Decode Range 1 */
233#define LPC_GEN2_DEC 0x88 /* LPC IF Generic Decode Range 2 */
234#define LPC_GEN3_DEC 0x8c /* LPC IF Generic Decode Range 3 */
235#define LPC_GEN4_DEC 0x90 /* LPC IF Generic Decode Range 4 */
Aaron Durbin6f561af2012-12-19 14:38:01 -0600236#define LGMR 0x98 /* LPC Generic Memory Range */
Aaron Durbin76c37002012-10-30 09:03:43 -0500237
238/* PCI Configuration Space (D31:F1): IDE */
239#define PCH_IDE_DEV PCI_DEV(0, 0x1f, 1)
240#define PCH_SATA_DEV PCI_DEV(0, 0x1f, 2)
241#define PCH_SATA2_DEV PCI_DEV(0, 0x1f, 5)
242#define INTR_LN 0x3c
243#define IDE_TIM_PRI 0x40 /* IDE timings, primary */
244#define IDE_DECODE_ENABLE (1 << 15)
245#define IDE_SITRE (1 << 14)
246#define IDE_ISP_5_CLOCKS (0 << 12)
247#define IDE_ISP_4_CLOCKS (1 << 12)
248#define IDE_ISP_3_CLOCKS (2 << 12)
249#define IDE_RCT_4_CLOCKS (0 << 8)
250#define IDE_RCT_3_CLOCKS (1 << 8)
251#define IDE_RCT_2_CLOCKS (2 << 8)
252#define IDE_RCT_1_CLOCKS (3 << 8)
253#define IDE_DTE1 (1 << 7)
254#define IDE_PPE1 (1 << 6)
255#define IDE_IE1 (1 << 5)
256#define IDE_TIME1 (1 << 4)
257#define IDE_DTE0 (1 << 3)
258#define IDE_PPE0 (1 << 2)
259#define IDE_IE0 (1 << 1)
260#define IDE_TIME0 (1 << 0)
261#define IDE_TIM_SEC 0x42 /* IDE timings, secondary */
262
263#define IDE_SDMA_CNT 0x48 /* Synchronous DMA control */
264#define IDE_SSDE1 (1 << 3)
265#define IDE_SSDE0 (1 << 2)
266#define IDE_PSDE1 (1 << 1)
267#define IDE_PSDE0 (1 << 0)
268
269#define IDE_SDMA_TIM 0x4a
270
271#define IDE_CONFIG 0x54 /* IDE I/O Configuration Register */
272#define SIG_MODE_SEC_NORMAL (0 << 18)
273#define SIG_MODE_SEC_TRISTATE (1 << 18)
274#define SIG_MODE_SEC_DRIVELOW (2 << 18)
275#define SIG_MODE_PRI_NORMAL (0 << 16)
276#define SIG_MODE_PRI_TRISTATE (1 << 16)
277#define SIG_MODE_PRI_DRIVELOW (2 << 16)
278#define FAST_SCB1 (1 << 15)
279#define FAST_SCB0 (1 << 14)
280#define FAST_PCB1 (1 << 13)
281#define FAST_PCB0 (1 << 12)
282#define SCB1 (1 << 3)
283#define SCB0 (1 << 2)
284#define PCB1 (1 << 1)
285#define PCB0 (1 << 0)
286
287#define SATA_SIRI 0xa0 /* SATA Indexed Register Index */
288#define SATA_SIRD 0xa4 /* SATA Indexed Register Data */
289#define SATA_SP 0xd0 /* Scratchpad */
290
291/* SATA IOBP Registers */
292#define SATA_IOBP_SP0G3IR 0xea000151
293#define SATA_IOBP_SP1G3IR 0xea000051
294
Duncan Laurie71346c02013-01-10 13:20:40 -0800295/* Serial IO IOBP Registers */
296#define SIO_IOBP_PORTCTRL0 0xcb000000 /* SDIO D23:F0 */
297#define SIO_IOBP_PORTCTRL0_ACPI_IRQ_EN (1 << 5)
298#define SIO_IOBP_PORTCTRL0_PCI_CONF_DIS (1 << 4)
299#define SIO_IOBP_PORTCTRL1 0xcb000014 /* SDIO D23:F0 */
300#define SIO_IOBP_PORTCTRL1_SNOOP_SELECT(x) (((x) & 3) << 13)
301#define SIO_IOBP_GPIODF 0xcb000154
302#define SIO_IOBP_GPIODF_SDIO_IDLE_DET_EN (1 << 4)
303#define SIO_IOBP_GPIODF_DMA_IDLE_DET_EN (1 << 3)
304#define SIO_IOBP_GPIODF_UART_IDLE_DET_EN (1 << 2)
305#define SIO_IOBP_GPIODF_I2C_IDLE_DET_EN (1 << 1)
306#define SIO_IOBP_GPIODF_SPI_IDLE_DET_EN (1 << 0)
307#define SIO_IOBP_PORTCTRL2 0xcb000240 /* DMA D21:F0 */
308#define SIO_IOBP_PORTCTRL3 0xcb000248 /* I2C0 D21:F1 */
309#define SIO_IOBP_PORTCTRL4 0xcb000250 /* I2C1 D21:F2 */
310#define SIO_IOBP_PORTCTRL5 0xcb000258 /* SPI0 D21:F3 */
311#define SIO_IOBP_PORTCTRL6 0xcb000260 /* SPI1 D21:F4 */
312#define SIO_IOBP_PORTCTRL7 0xcb000268 /* UART0 D21:F5 */
313#define SIO_IOBP_PORTCTRL8 0xcb000270 /* UART1 D21:F6 */
314/* PORTCTRL 2-8 have the same layout */
315#define SIO_IOBP_PORTCTRL_ACPI_IRQ_EN (1 << 21)
316#define SIO_IOBP_PORTCTRL_PCI_CONF_DIS (1 << 20)
317#define SIO_IOBP_PORTCTRL_SNOOP_SELECT(x) (((x) & 3) << 18)
318#define SIO_IOBP_PORTCTRL_INT_PIN(x) (((x) & 0xf) << 2)
319#define SIO_IOBP_FUNCDIS0 0xce00aa07 /* DMA D21:F0 */
320#define SIO_IOBP_FUNCDIS1 0xce00aa47 /* I2C0 D21:F1 */
321#define SIO_IOBP_FUNCDIS2 0xce00aa87 /* I2C1 D21:F2 */
322#define SIO_IOBP_FUNCDIS3 0xce00aac7 /* SPI0 D21:F3 */
323#define SIO_IOBP_FUNCDIS4 0xce00ab07 /* SPI1 D21:F4 */
324#define SIO_IOBP_FUNCDIS5 0xce00ab47 /* UART0 D21:F5 */
325#define SIO_IOBP_FUNCDIS6 0xce00ab87 /* UART1 D21:F6 */
326#define SIO_IOBP_FUNCDIS7 0xce00ae07 /* SDIO D23:F0 */
327#define SIO_IOBP_FUNCDIS_DIS (1 << 8)
328
Aaron Durbin76c37002012-10-30 09:03:43 -0500329/* PCI Configuration Space (D31:F3): SMBus */
330#define PCH_SMBUS_DEV PCI_DEV(0, 0x1f, 3)
331#define SMB_BASE 0x20
332#define HOSTC 0x40
333#define SMB_RCV_SLVA 0x09
334
335/* HOSTC bits */
336#define I2C_EN (1 << 2)
337#define SMB_SMI_EN (1 << 1)
338#define HST_EN (1 << 0)
339
340/* SMBus I/O bits. */
341#define SMBHSTSTAT 0x0
342#define SMBHSTCTL 0x2
343#define SMBHSTCMD 0x3
344#define SMBXMITADD 0x4
345#define SMBHSTDAT0 0x5
346#define SMBHSTDAT1 0x6
347#define SMBBLKDAT 0x7
348#define SMBTRNSADD 0x9
349#define SMBSLVDATA 0xa
350#define SMLINK_PIN_CTL 0xe
351#define SMBUS_PIN_CTL 0xf
352
353#define SMBUS_TIMEOUT (10 * 1000 * 100)
354
355
356/* Southbridge IO BARs */
357
358#define GPIOBASE 0x48
359
360#define PMBASE 0x40
361
362/* Root Complex Register Block */
363#define RCBA 0xf0
364
365#define RCBA8(x) *((volatile u8 *)(DEFAULT_RCBA + x))
366#define RCBA16(x) *((volatile u16 *)(DEFAULT_RCBA + x))
367#define RCBA32(x) *((volatile u32 *)(DEFAULT_RCBA + x))
368
369#define RCBA_AND_OR(bits, x, and, or) \
370 RCBA##bits(x) = ((RCBA##bits(x) & (and)) | (or))
371#define RCBA8_AND_OR(x, and, or) RCBA_AND_OR(8, x, and, or)
372#define RCBA16_AND_OR(x, and, or) RCBA_AND_OR(16, x, and, or)
373#define RCBA32_AND_OR(x, and, or) RCBA_AND_OR(32, x, and, or)
374#define RCBA32_OR(x, or) RCBA_AND_OR(32, x, ~0UL, or)
375
376#define VCH 0x0000 /* 32bit */
377#define VCAP1 0x0004 /* 32bit */
378#define VCAP2 0x0008 /* 32bit */
379#define PVC 0x000c /* 16bit */
380#define PVS 0x000e /* 16bit */
381
382#define V0CAP 0x0010 /* 32bit */
383#define V0CTL 0x0014 /* 32bit */
384#define V0STS 0x001a /* 16bit */
385
386#define V1CAP 0x001c /* 32bit */
387#define V1CTL 0x0020 /* 32bit */
388#define V1STS 0x0026 /* 16bit */
389
390#define RCTCL 0x0100 /* 32bit */
391#define ESD 0x0104 /* 32bit */
392#define ULD 0x0110 /* 32bit */
393#define ULBA 0x0118 /* 64bit */
394
395#define RP1D 0x0120 /* 32bit */
396#define RP1BA 0x0128 /* 64bit */
397#define RP2D 0x0130 /* 32bit */
398#define RP2BA 0x0138 /* 64bit */
399#define RP3D 0x0140 /* 32bit */
400#define RP3BA 0x0148 /* 64bit */
401#define RP4D 0x0150 /* 32bit */
402#define RP4BA 0x0158 /* 64bit */
403#define HDD 0x0160 /* 32bit */
404#define HDBA 0x0168 /* 64bit */
405#define RP5D 0x0170 /* 32bit */
406#define RP5BA 0x0178 /* 64bit */
407#define RP6D 0x0180 /* 32bit */
408#define RP6BA 0x0188 /* 64bit */
409
410#define RPFN 0x0404 /* 32bit */
411
412/* Root Port configuratinon space hide */
413#define RPFN_HIDE(port) (1 << (((port) * 4) + 3))
414/* Get the function number assigned to a Root Port */
415#define RPFN_FNGET(reg,port) (((reg) >> ((port) * 4)) & 7)
416/* Set the function number for a Root Port */
417#define RPFN_FNSET(port,func) (((func) & 7) << ((port) * 4))
418/* Root Port function number mask */
419#define RPFN_FNMASK(port) (7 << ((port) * 4))
420
421#define TRSR 0x1e00 /* 8bit */
422#define TRCR 0x1e10 /* 64bit */
423#define TWDR 0x1e18 /* 64bit */
424
425#define IOTR0 0x1e80 /* 64bit */
426#define IOTR1 0x1e88 /* 64bit */
427#define IOTR2 0x1e90 /* 64bit */
428#define IOTR3 0x1e98 /* 64bit */
429
430#define TCTL 0x3000 /* 8bit */
431
432#define NOINT 0
433#define INTA 1
434#define INTB 2
435#define INTC 3
436#define INTD 4
437
438#define DIR_IDR 12 /* Interrupt D Pin Offset */
439#define DIR_ICR 8 /* Interrupt C Pin Offset */
440#define DIR_IBR 4 /* Interrupt B Pin Offset */
441#define DIR_IAR 0 /* Interrupt A Pin Offset */
442
443#define PIRQA 0
444#define PIRQB 1
445#define PIRQC 2
446#define PIRQD 3
447#define PIRQE 4
448#define PIRQF 5
449#define PIRQG 6
450#define PIRQH 7
451
452/* IO Buffer Programming */
453#define IOBPIRI 0x2330
454#define IOBPD 0x2334
455#define IOBPS 0x2338
Duncan Laurie7302d1e2013-01-10 13:19:23 -0800456#define IOBPS_READY 0x0001
457#define IOBPS_TX_MASK 0x0006
458#define IOBPS_MASK 0xff00
459#define IOBPS_READ 0x0600
460#define IOBPS_WRITE 0x0700
461#define IOBPU 0x233a
462#define IOBPU_MAGIC 0xf000
Aaron Durbin76c37002012-10-30 09:03:43 -0500463
464#define D31IP 0x3100 /* 32bit */
465#define D31IP_TTIP 24 /* Thermal Throttle Pin */
466#define D31IP_SIP2 20 /* SATA Pin 2 */
467#define D31IP_SMIP 12 /* SMBUS Pin */
468#define D31IP_SIP 8 /* SATA Pin */
469#define D30IP 0x3104 /* 32bit */
470#define D30IP_PIP 0 /* PCI Bridge Pin */
471#define D29IP 0x3108 /* 32bit */
472#define D29IP_E1P 0 /* EHCI #1 Pin */
473#define D28IP 0x310c /* 32bit */
474#define D28IP_P8IP 28 /* PCI Express Port 8 */
475#define D28IP_P7IP 24 /* PCI Express Port 7 */
476#define D28IP_P6IP 20 /* PCI Express Port 6 */
477#define D28IP_P5IP 16 /* PCI Express Port 5 */
478#define D28IP_P4IP 12 /* PCI Express Port 4 */
479#define D28IP_P3IP 8 /* PCI Express Port 3 */
480#define D28IP_P2IP 4 /* PCI Express Port 2 */
481#define D28IP_P1IP 0 /* PCI Express Port 1 */
482#define D27IP 0x3110 /* 32bit */
483#define D27IP_ZIP 0 /* HD Audio Pin */
484#define D26IP 0x3114 /* 32bit */
485#define D26IP_E2P 0 /* EHCI #2 Pin */
486#define D25IP 0x3118 /* 32bit */
487#define D25IP_LIP 0 /* GbE LAN Pin */
488#define D22IP 0x3124 /* 32bit */
489#define D22IP_KTIP 12 /* KT Pin */
490#define D22IP_IDERIP 8 /* IDE-R Pin */
491#define D22IP_MEI2IP 4 /* MEI #2 Pin */
492#define D22IP_MEI1IP 0 /* MEI #1 Pin */
Duncan Laurie26e7dd72012-12-19 09:12:31 -0800493#define D20IP 0x3128 /* 32bit */
494#define D20IP_XHCI 0 /* XHCI Pin */
Aaron Durbin76c37002012-10-30 09:03:43 -0500495#define D31IR 0x3140 /* 16bit */
496#define D30IR 0x3142 /* 16bit */
497#define D29IR 0x3144 /* 16bit */
498#define D28IR 0x3146 /* 16bit */
499#define D27IR 0x3148 /* 16bit */
500#define D26IR 0x314c /* 16bit */
501#define D25IR 0x3150 /* 16bit */
Duncan Laurie26e7dd72012-12-19 09:12:31 -0800502#define D23IR 0x3158 /* 16bit */
Aaron Durbin76c37002012-10-30 09:03:43 -0500503#define D22IR 0x315c /* 16bit */
Duncan Laurie26e7dd72012-12-19 09:12:31 -0800504#define D20IR 0x3160 /* 16bit */
505#define D21IR 0x3164 /* 16bit */
506#define D19IR 0x3168 /* 16bit */
Aaron Durbin76c37002012-10-30 09:03:43 -0500507#define OIC 0x31fe /* 16bit */
508#define SOFT_RESET_CTRL 0x38f4
509#define SOFT_RESET_DATA 0x38f8
510
Aaron Durbin239c2e82012-12-19 11:31:17 -0600511#define DIR_ROUTE(a,b,c,d) \
512 (((d) << DIR_IDR) | ((c) << DIR_ICR) | \
513 ((b) << DIR_IBR) | ((a) << DIR_IAR))
Aaron Durbin76c37002012-10-30 09:03:43 -0500514
515#define RC 0x3400 /* 32bit */
516#define HPTC 0x3404 /* 32bit */
517#define GCS 0x3410 /* 32bit */
518#define BUC 0x3414 /* 32bit */
519#define PCH_DISABLE_GBE (1 << 5)
520#define FD 0x3418 /* 32bit */
521#define DISPBDF 0x3424 /* 16bit */
522#define FD2 0x3428 /* 32bit */
523#define CG 0x341c /* 32bit */
524
525/* Function Disable 1 RCBA 0x3418 */
Duncan Laurie26e7dd72012-12-19 09:12:31 -0800526#define PCH_DISABLE_ALWAYS (1 << 0)
527#define PCH_DISABLE_ADSPD (1 << 1)
Aaron Durbin76c37002012-10-30 09:03:43 -0500528#define PCH_DISABLE_SATA1 (1 << 2)
529#define PCH_DISABLE_SMBUS (1 << 3)
530#define PCH_DISABLE_HD_AUDIO (1 << 4)
531#define PCH_DISABLE_EHCI2 (1 << 13)
532#define PCH_DISABLE_LPC (1 << 14)
533#define PCH_DISABLE_EHCI1 (1 << 15)
534#define PCH_DISABLE_PCIE(x) (1 << (16 + x))
535#define PCH_DISABLE_THERMAL (1 << 24)
536#define PCH_DISABLE_SATA2 (1 << 25)
Duncan Laurie26e7dd72012-12-19 09:12:31 -0800537#define PCH_DISABLE_XHCI (1 << 27)
Aaron Durbin76c37002012-10-30 09:03:43 -0500538
539/* Function Disable 2 RCBA 0x3428 */
540#define PCH_DISABLE_KT (1 << 4)
541#define PCH_DISABLE_IDER (1 << 3)
542#define PCH_DISABLE_MEI2 (1 << 2)
543#define PCH_DISABLE_MEI1 (1 << 1)
544#define PCH_ENABLE_DBDF (1 << 0)
545
Aaron Durbin76c37002012-10-30 09:03:43 -0500546/* ICH7 PMBASE */
547#define PM1_STS 0x00
548#define WAK_STS (1 << 15)
549#define PCIEXPWAK_STS (1 << 14)
550#define PRBTNOR_STS (1 << 11)
551#define RTC_STS (1 << 10)
552#define PWRBTN_STS (1 << 8)
553#define GBL_STS (1 << 5)
554#define BM_STS (1 << 4)
555#define TMROF_STS (1 << 0)
556#define PM1_EN 0x02
557#define PCIEXPWAK_DIS (1 << 14)
558#define RTC_EN (1 << 10)
559#define PWRBTN_EN (1 << 8)
560#define GBL_EN (1 << 5)
561#define TMROF_EN (1 << 0)
562#define PM1_CNT 0x04
563#define SLP_EN (1 << 13)
564#define SLP_TYP (7 << 10)
565#define SLP_TYP_S0 0
566#define SLP_TYP_S1 1
567#define SLP_TYP_S3 5
568#define SLP_TYP_S4 6
569#define SLP_TYP_S5 7
570#define GBL_RLS (1 << 2)
571#define BM_RLD (1 << 1)
572#define SCI_EN (1 << 0)
573#define PM1_TMR 0x08
574#define PROC_CNT 0x10
575#define LV2 0x14
576#define LV3 0x15
577#define LV4 0x16
578#define PM2_CNT 0x50 // mobile only
579#define GPE0_STS 0x20
580#define PME_B0_STS (1 << 13)
581#define PME_STS (1 << 11)
582#define BATLOW_STS (1 << 10)
583#define PCI_EXP_STS (1 << 9)
584#define RI_STS (1 << 8)
585#define SMB_WAK_STS (1 << 7)
586#define TCOSCI_STS (1 << 6)
587#define SWGPE_STS (1 << 2)
588#define HOT_PLUG_STS (1 << 1)
589#define GPE0_EN 0x28
590#define PME_B0_EN (1 << 13)
591#define PME_EN (1 << 11)
592#define TCOSCI_EN (1 << 6)
593#define SMI_EN 0x30
594#define INTEL_USB2_EN (1 << 18) // Intel-Specific USB2 SMI logic
595#define LEGACY_USB2_EN (1 << 17) // Legacy USB2 SMI logic
596#define PERIODIC_EN (1 << 14) // SMI on PERIODIC_STS in SMI_STS
597#define TCO_EN (1 << 13) // Enable TCO Logic (BIOSWE et al)
598#define MCSMI_EN (1 << 11) // Trap microcontroller range access
599#define BIOS_RLS (1 << 7) // asserts SCI on bit set
600#define SWSMI_TMR_EN (1 << 6) // start software smi timer on bit set
601#define APMC_EN (1 << 5) // Writes to APM_CNT cause SMI#
602#define SLP_SMI_EN (1 << 4) // Write to SLP_EN in PM1_CNT asserts SMI#
603#define LEGACY_USB_EN (1 << 3) // Legacy USB circuit SMI logic
604#define BIOS_EN (1 << 2) // Assert SMI# on setting GBL_RLS bit
605#define EOS (1 << 1) // End of SMI (deassert SMI#)
606#define GBL_SMI_EN (1 << 0) // SMI# generation at all?
607#define SMI_STS 0x34
608#define ALT_GP_SMI_EN 0x38
609#define ALT_GP_SMI_STS 0x3a
610#define GPE_CNTL 0x42
611#define DEVACT_STS 0x44
612#define SS_CNT 0x50
613#define C3_RES 0x54
614#define TCO1_STS 0x64
615#define DMISCI_STS (1 << 9)
616#define TCO2_STS 0x66
617
618/*
619 * SPI Opcode Menu setup for SPIBAR lockdown
620 * should support most common flash chips.
621 */
622
623#define SPIBAR_OFFSET 0x3800
624#define SPIBAR8(x) RCBA8(x + SPIBAR_OFFSET)
625#define SPIBAR16(x) RCBA16(x + SPIBAR_OFFSET)
626#define SPIBAR32(x) RCBA32(x + SPIBAR_OFFSET)
627
628/* Reigsters within the SPIBAR */
629#define SSFC 0x91
630#define FDOC 0xb0
631#define FDOD 0xb4
632
633#define SPI_OPMENU_0 0x01 /* WRSR: Write Status Register */
634#define SPI_OPTYPE_0 0x01 /* Write, no address */
635
636#define SPI_OPMENU_1 0x02 /* BYPR: Byte Program */
637#define SPI_OPTYPE_1 0x03 /* Write, address required */
638
639#define SPI_OPMENU_2 0x03 /* READ: Read Data */
640#define SPI_OPTYPE_2 0x02 /* Read, address required */
641
642#define SPI_OPMENU_3 0x05 /* RDSR: Read Status Register */
643#define SPI_OPTYPE_3 0x00 /* Read, no address */
644
645#define SPI_OPMENU_4 0x20 /* SE20: Sector Erase 0x20 */
646#define SPI_OPTYPE_4 0x03 /* Write, address required */
647
648#define SPI_OPMENU_5 0x9f /* RDID: Read ID */
649#define SPI_OPTYPE_5 0x00 /* Read, no address */
650
651#define SPI_OPMENU_6 0xd8 /* BED8: Block Erase 0xd8 */
652#define SPI_OPTYPE_6 0x03 /* Write, address required */
653
654#define SPI_OPMENU_7 0x0b /* FAST: Fast Read */
655#define SPI_OPTYPE_7 0x02 /* Read, address required */
656
657#define SPI_OPMENU_UPPER ((SPI_OPMENU_7 << 24) | (SPI_OPMENU_6 << 16) | \
658 (SPI_OPMENU_5 << 8) | SPI_OPMENU_4)
659#define SPI_OPMENU_LOWER ((SPI_OPMENU_3 << 24) | (SPI_OPMENU_2 << 16) | \
660 (SPI_OPMENU_1 << 8) | SPI_OPMENU_0)
661
662#define SPI_OPTYPE ((SPI_OPTYPE_7 << 14) | (SPI_OPTYPE_6 << 12) | \
663 (SPI_OPTYPE_5 << 10) | (SPI_OPTYPE_4 << 8) | \
664 (SPI_OPTYPE_3 << 6) | (SPI_OPTYPE_2 << 4) | \
665 (SPI_OPTYPE_1 << 2) | (SPI_OPTYPE_0))
666
667#define SPI_OPPREFIX ((0x50 << 8) | 0x06) /* EWSR and WREN */
668
669#define SPIBAR_HSFS 0x3804 /* SPI hardware sequence status */
670#define SPIBAR_HSFS_SCIP (1 << 5) /* SPI Cycle In Progress */
671#define SPIBAR_HSFS_AEL (1 << 2) /* SPI Access Error Log */
672#define SPIBAR_HSFS_FCERR (1 << 1) /* SPI Flash Cycle Error */
673#define SPIBAR_HSFS_FDONE (1 << 0) /* SPI Flash Cycle Done */
674#define SPIBAR_HSFC 0x3806 /* SPI hardware sequence control */
675#define SPIBAR_HSFC_BYTE_COUNT(c) (((c - 1) & 0x3f) << 8)
676#define SPIBAR_HSFC_CYCLE_READ (0 << 1) /* Read cycle */
677#define SPIBAR_HSFC_CYCLE_WRITE (2 << 1) /* Write cycle */
678#define SPIBAR_HSFC_CYCLE_ERASE (3 << 1) /* Erase cycle */
679#define SPIBAR_HSFC_GO (1 << 0) /* GO: start SPI transaction */
680#define SPIBAR_FADDR 0x3808 /* SPI flash address */
681#define SPIBAR_FDATA(n) (0x3810 + (4 * n)) /* SPI flash data */
682
683#endif /* __ACPI__ */
684#endif /* SOUTHBRIDGE_INTEL_LYNXPOINT_PCH_H */