summaryrefslogtreecommitdiffstats
path: root/src/soc/intel/skylake/include/soc/serialio.h
blob: 0bc07c30d7d2216b364a7662d877ee7861203491 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*
 * This file is part of the coreboot project.
 *
 * Copyright (C) 2013 Google Inc.
 * Copyright (C) 2015 Intel Corporation.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; version 2 of the License.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

#ifndef _SERIALIO_H_
#define _SERIALIO_H_

#define SIO_REG_PPR_CLOCK         0x200
#define SIO_REG_PPR_CLOCK_EN      (1 << 0)
#define SIO_REG_PPR_CLOCK_UPDATE  (1 << 31)
#define SIO_REG_PPR_CLOCK_N_DIV   0xc35
#define SIO_REG_PPR_CLOCK_M_DIV   0x30

#define SIO_REG_PPR_RESETS        0x204
#define SIO_REG_PPR_RESETS_FUNC   (1 << 0)
#define SIO_REG_PPR_RESETS_APB    (1 << 1)
#define SIO_REG_PPR_RESETS_IDMA   (1 << 2)

typedef enum {
	PchSerialIoDisabled,
	PchSerialIoAcpi,
	PchSerialIoPci,
	PchSerialIoAcpiHidden,
	PchSerialIoLegacyUart
} PCH_SERIAL_IO_MODE;

typedef enum {
	PchSerialIoIndexI2C0,
	PchSerialIoIndexI2C1,
	PchSerialIoIndexI2C2,
	PchSerialIoIndexI2C3,
	PchSerialIoIndexI2C4,
	PchSerialIoIndexI2C5,
	PchSerialIoIndexSpi0,
	PchSerialIoIndexSpi1,
	PchSerialIoIndexUart0,
	PchSerialIoIndexUart1,
	PchSerialIoIndexUart2,
	PchSerialIoIndexMax
} PCH_SERIAL_IO_CONTROLLER;

#endif