blob: fb6c764aa8b05f275e9a25e5cfe1146a102345ba (
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
|
/*
* This file is part of the coreboot project.
*
* Copyright 2018 Google LLC
*
* 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 REGISTER
#error "define REGISTER(NAME) before including this file"
#endif
REGISTER(reg_prox_ctrl0);
REGISTER(reg_prox_ctrl1);
REGISTER(reg_prox_ctrl2);
REGISTER(reg_prox_ctrl3);
REGISTER(reg_prox_ctrl4);
REGISTER(reg_prox_ctrl5);
REGISTER(reg_prox_ctrl6);
REGISTER(reg_prox_ctrl7);
REGISTER(reg_prox_ctrl8);
REGISTER(reg_prox_ctrl9);
REGISTER(reg_prox_ctrl10);
REGISTER(reg_prox_ctrl11);
REGISTER(reg_prox_ctrl12);
REGISTER(reg_prox_ctrl13);
REGISTER(reg_prox_ctrl14);
REGISTER(reg_prox_ctrl15);
REGISTER(reg_prox_ctrl16);
REGISTER(reg_prox_ctrl17);
REGISTER(reg_prox_ctrl18);
REGISTER(reg_prox_ctrl19);
REGISTER(reg_sar_ctrl0);
REGISTER(reg_sar_ctrl1);
REGISTER(reg_sar_ctrl2);
|