summaryrefslogtreecommitdiff
path: root/ArmPkg/Drivers/AcpiTables/exynos5250-arndale/Csrt.aslc
blob: 44e516fe62e122de2cef186b07986ebcca75741c (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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
/*
 * Copyright (c) 2013 Linaro Limited
 *
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the BSD License which accompanies
 * this distribution, and is available at
 * http://opensource.org/licenses/bsd-license.php
 *
 * Contributors:
 *     Yi Li - yi.li@linaro.org
*/

#include <IndustryStandard/Acpi.h>
#include <Platform.h>

#define ACPI_5_0_CSRT_VERSION   0x1

#define ACPI_RESOURCE_GROUP_NUM 0x2
#define ACPI_RESOURCE_DESCRIPTOR_NUM0 0x7
#define ACPI_RESOURCE_DESCRIPTOR_NUM1 0x9

/*resource group header*/
typedef struct 
{
  UINT32 Length;
  UINT32 VendorID;
  UINT32 SubvendorID;
  UINT16 DeviceID;
  UINT16 SubdeviceID;
  UINT16 Revision;
  UINT16 Reserved;
  UINT32 SharedInfoLength;
}EFI_ACPI_5_0_CRST_RESOURCE_GROUP_HEADER;

/*resource descriptor header*/
typedef struct 
{
  UINT32 Length;
  UINT16 ResourceType;
  UINT16 ResourceSubType;
  UINT32 UID;
}EFI_ACPI_5_0_CRST_RESOURCE_DESCRIPTOR;


/*timer share info*/
typedef struct 
{   
   UINT16 usMajorVersion;
   UINT16 usMinorVersion;
   UINT32 uwMMIOBaseAddressLow;
   UINT32 uwMMIOBaseAddressHigh;
   UINT32 uwGSIInterrupt;
   UINT8  ucInterruptPolarity;
   UINT8  ucInterruptMode;
   UINT8  ucNumChannels;
   UINT8  ucDMAAddressWidth;
   UINT16 usDMAAddressWidth;
   UINT16 usNumHandshakeSignals;
   UINT32 uwMaxBlockSize;
}EFI_ACPI_5_0_CRST_SHARE_INFO;



/*timer resource group header*/
typedef struct 
{
  EFI_ACPI_5_0_CRST_RESOURCE_GROUP_HEADER head;
  EFI_ACPI_5_0_CRST_SHARE_INFO ShareInfo; /*share info*/
  EFI_ACPI_5_0_CRST_RESOURCE_DESCRIPTOR ResourceDescriptor[ACPI_RESOURCE_DESCRIPTOR_NUM0];  
}EFI_ACPI_5_0_CRST_RESOURCE_GROUP0;

/*timer resource group header*/
typedef struct 
{
  EFI_ACPI_5_0_CRST_RESOURCE_GROUP_HEADER head;
  EFI_ACPI_5_0_CRST_SHARE_INFO ShareInfo; /*share info*/
  EFI_ACPI_5_0_CRST_RESOURCE_DESCRIPTOR ResourceDescriptor[ACPI_RESOURCE_DESCRIPTOR_NUM1];  
}EFI_ACPI_5_0_CRST_RESOURCE_GROUP1;




/*CSRT structure*/
typedef struct {
    EFI_ACPI_DESCRIPTION_HEADER Header;
    EFI_ACPI_5_0_CRST_RESOURCE_GROUP0 ResourceGroup0;
    EFI_ACPI_5_0_CRST_RESOURCE_GROUP1 ResourceGroup1;
} EFI_ACPI_5_0_CORE_SYSTEM_RESOURCE_TABLE;




EFI_ACPI_5_0_CORE_SYSTEM_RESOURCE_TABLE Csrt = {    
  {
      EFI_ACPI_5_0_CORE_SYSTEM_RESOURCE_TABLE_SIGNATURE,
      sizeof (EFI_ACPI_5_0_CORE_SYSTEM_RESOURCE_TABLE),
      ACPI_5_0_CSRT_VERSION,
      0x00,                                                     // Checksum will be updated at runtime
      {EFI_ACPI_OEM_ID_INTEL},
      EFI_ACPI_OEM_TABLE_ID_INTEL,
      EFI_ACPI_OEM_REVISION,
      EFI_ACPI_CREATOR_ID,
      EFI_ACPI_CREATOR_REVISION 
  },
  /*EFI_ACPI_5_0_CRST_RESOURCE_GROUP0*/
  {
    sizeof(EFI_ACPI_5_0_CRST_RESOURCE_GROUP0),       /*Length*/
    EFI_ACPI_CREATOR_ID,                            /*VendorID*/
    0,                                              /*SubvendorID*/     
    0x9C60,                                         /*DeviceID*/
    0x0,                                            /*SubdeviceID*/
    0002,                                           /*Revision*/
    0,                                              /*Reserved*/
    sizeof(EFI_ACPI_5_0_CRST_SHARE_INFO),           /*SharedInfoLength*/
    /*share info*/
    {
      0x1,                                            /*Major Version*/
      0x0,                                            /*Minor Version*/
      0xB3A00000,                                     /*MMIO Base Address Low*/
      0x00000000,                                     /*MMIO Base Address High*/
      0x0000002A,                                     /*GSI Interrupt*/
      0x2,                                            /*Interrupt Polarity*/
      0x0,                                            /*Interrupt Mode*/
      0x6,                                            /*Num Channels*/  
      0x20,                                           /*DMA Address Width*/
      0x0,                                            /*Base Request Line*/
      0x10,                                           /*Num Handshake Signals*/
      0xfff,                                          /*Max Block Size*/
    },
    {
      {
        sizeof(EFI_ACPI_5_0_CRST_RESOURCE_DESCRIPTOR),  /*Length*/
        0x3,                                            /*ResourceType*/
        0x1,                                            /*ResourceSubType*/
        0x20495053                                      /*UID*/
      },
      {
        sizeof(EFI_ACPI_5_0_CRST_RESOURCE_DESCRIPTOR),  /*Length*/
        0x3,                                            /*ResourceType*/
        0x0,                                            /*ResourceSubType*/
        0x30414843                                      /*UID*/
      },
      {
        sizeof(EFI_ACPI_5_0_CRST_RESOURCE_DESCRIPTOR),  /*Length*/
        0x3,                                            /*ResourceType*/
        0x0,                                            /*ResourceSubType*/
        0x31414843                                      /*UID*/
      },
      {
        sizeof(EFI_ACPI_5_0_CRST_RESOURCE_DESCRIPTOR),  /*Length*/
        0x3,                                            /*ResourceType*/
        0x0,                                            /*ResourceSubType*/
        0x32414843                                      /*UID*/
      },
      {
        sizeof(EFI_ACPI_5_0_CRST_RESOURCE_DESCRIPTOR),  /*Length*/
        0x3,                                            /*ResourceType*/
        0x0,                                            /*ResourceSubType*/
        0x33414843                                      /*UID*/
      },
      {
        sizeof(EFI_ACPI_5_0_CRST_RESOURCE_DESCRIPTOR),  /*Length*/
        0x3,                                            /*ResourceType*/
        0x0,                                            /*ResourceSubType*/
        0x34414843                                      /*UID*/
      },
      {
        sizeof(EFI_ACPI_5_0_CRST_RESOURCE_DESCRIPTOR),  /*Length*/
        0x3,                                            /*ResourceType*/
        0x0,                                            /*ResourceSubType*/
        0x35414843                                      /*UID*/
      },
    }
  },  
  {
    /*header*/
    {
      sizeof(EFI_ACPI_5_0_CRST_RESOURCE_GROUP1),       /*Length*/
      EFI_ACPI_CREATOR_ID,                            /*VendorID*/
      0,                                              /*SubvendorID*/     
      0x9C60,                                         /*DeviceID*/
      0x0,                                            /*SubdeviceID*/
      0003,                                           /*Revision*/
      0,                                              /*Reserved*/
      sizeof(EFI_ACPI_5_0_CRST_SHARE_INFO),           /*SharedInfoLength*/
    },
    /*share info*/
    {
      0x1,                                            /*Major Version*/
      0x0,                                            /*Minor Version*/
      0x0,                                     /*MMIO Base Address Low*/
      0x00000000,                                     /*MMIO Base Address High*/
      0x0000002B,                                     /*GSI Interrupt*/
      0x2,                                            /*Interrupt Polarity*/
      0x0,                                            /*Interrupt Mode*/
      0x8,                                            /*Num Channels*/  
      0x20,                                           /*DMA Address Width*/
      0x10,                                            /*Base Request Line*/
      0x10,                                           /*Num Handshake Signals*/
      0xfff,                                          /*Max Block Size*/
    },
    {
      {
        sizeof(EFI_ACPI_5_0_CRST_RESOURCE_DESCRIPTOR),  /*Length*/
        0x3,                                            /*ResourceType*/
        0x1,                                            /*ResourceSubType*/
        0x20433249                                      /*UID*/
      },
      {
        sizeof(EFI_ACPI_5_0_CRST_RESOURCE_DESCRIPTOR),  /*Length*/
        0x3,                                            /*ResourceType*/
        0x0,                                            /*ResourceSubType*/
        0x30414843                                      /*UID*/
      },
      {
        sizeof(EFI_ACPI_5_0_CRST_RESOURCE_DESCRIPTOR),  /*Length*/
        0x3,                                            /*ResourceType*/
        0x0,                                            /*ResourceSubType*/
        0x31414843                                      /*UID*/
      },
      {
        sizeof(EFI_ACPI_5_0_CRST_RESOURCE_DESCRIPTOR),  /*Length*/
        0x3,                                            /*ResourceType*/
        0x0,                                            /*ResourceSubType*/
        0x32414843                                      /*UID*/
      },
      {
        sizeof(EFI_ACPI_5_0_CRST_RESOURCE_DESCRIPTOR),  /*Length*/
        0x3,                                            /*ResourceType*/
        0x0,                                            /*ResourceSubType*/
        0x33414843                                      /*UID*/
      },
      {
        sizeof(EFI_ACPI_5_0_CRST_RESOURCE_DESCRIPTOR),  /*Length*/
        0x3,                                            /*ResourceType*/
        0x0,                                            /*ResourceSubType*/
        0x34414843                                      /*UID*/
      },
      {
        sizeof(EFI_ACPI_5_0_CRST_RESOURCE_DESCRIPTOR),  /*Length*/
        0x3,                                            /*ResourceType*/
        0x0,                                            /*ResourceSubType*/
        0x35414843                                      /*UID*/
      },
      {
        sizeof(EFI_ACPI_5_0_CRST_RESOURCE_DESCRIPTOR),  /*Length*/
        0x3,                                            /*ResourceType*/
        0x0,                                            /*ResourceSubType*/
        0x36414843                                      /*UID*/
      },
      {
        sizeof(EFI_ACPI_5_0_CRST_RESOURCE_DESCRIPTOR),  /*Length*/
        0x3,                                            /*ResourceType*/
        0x0,                                            /*ResourceSubType*/
        0x37414843                                      /*UID*/
      },
    },
  },
          
      
};


VOID*
ReferenceAcpiTable (
  VOID
  )
{
  //
  // Reference the table being generated to prevent the optimizer from removing the
  // data structure from the exeutable
  //
  return (VOID*)&Csrt;
}