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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
/*
* This file is part of the coreboot project.
*
* Copyright (C) 2015 Intel Corp.
*
* 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.
*/
#include <console/console.h>
#include <soc/gpio.h>
/*
* Return family number and internal pad number in that community by pad number
* and which community it is in.
*/
uint16_t gpio_family_number(uint8_t community, uint8_t pad)
{
/*
* Refer to BSW BIOS Writers Guide, Table "Family Number".
* BSW has 4 GPIO communities. Each community has up to 7 families and
* each family contains a range of Pad numbers. The number in the array
* is the maximum no. of that range.
* For example: East community, family 0, Pad 0~11.
*/
static const uint8_t community_base[GPIO_COMMUNITY_COUNT]
[GPIO_FAMILIES_MAX_PER_COMM + 1] = {
{0, 8, 16, 24, 32, 40, 48, 56}, /* Southwest */
{0, 9, 22, 34, 46, 59, 59, 59}, /* North */
{0, 12, 24, 24, 24, 24, 24, 24}, /* East */
{0, 8, 20, 26, 34, 44, 55, 55} /* Southeast */
};
const uint8_t *base;
uint8_t i;
/* Validate the pad number */
if (pad > community_base[community][7])
die("Pad number is out of range!");
/* Locate the family number for the pad */
base = &community_base[community][0];
for (i = 0; i < 7; i++) {
if ((pad >= base[0]) && (pad < base[1]))
break;
base++;
}
/* Family number in high byte and inner pad number in lowest byte */
return (i << 8) + pad - *base;
}
/*
* Return pad configuration register offset by pad number and which community
* it is in.
*/
uint32_t *gpio_pad_config_reg(uint8_t community, uint8_t pad)
{
uint16_t fpad;
uint32_t *pad_config_reg;
/* Get the GPIO family number */
fpad = gpio_family_number(community, pad);
/*
* Refer to BSW BIOS Writers Guide, Table "Per Pad Memory Space
* Registers Addresses" for the Pad configuration register calculation.
*/
pad_config_reg = (uint32_t *)(COMMUNITY_BASE(community) + 0x4400 +
(0x400 * (fpad >> 8)) + (8 * (fpad & 0xff)));
return pad_config_reg;
}
int get_gpio(int community_base, int pad0_offset)
{
return (read32((void *)(community_base + pad0_offset))) & PAD_RX_BIT;
}
|