source: mainline/boot/arch/ia64/include/sal.h@ 26fb118a

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 26fb118a was 666d6dc, checked in by Jakub Jermar <jakub@…>, 14 years ago

Support for parsing SAL system table.

  • Property mode set to 100644
File size: 2.9 KB
Line 
1/*
2 * Copyright (c) 2011 Jakub Jermar
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#ifndef BOOT_ia64_SAL_H_
30#define BOOT_ia64_SAL_H_
31
32#include <arch/types.h>
33#include <typedefs.h>
34
35typedef struct {
36 uint8_t signature[4];
37 uint32_t total_length;
38 uint16_t sal_revision;
39 uint16_t entry_count;
40 uint8_t checksum;
41 uint8_t reserved1[7];
42 uint16_t sal_a_version;
43 uint16_t sal_b_version;
44 uint8_t oem_id[32];
45 uint8_t product_id[32];
46 uint8_t reserved2[8];
47} sal_system_table_header_t;
48
49typedef enum {
50 SSTT_ENTRYPOINT_DESC,
51 SSTT_MEMORY_DESC,
52 SSTT_PLATFORM_FEATURES_DESC,
53 SSTT_TR_DESC,
54 SSTT_PTC_COHERENCE_DOMAIN_DESC,
55 SSTT_AP_WAKEUP_DESC
56} sal_sst_type_t;
57
58typedef struct {
59 uint8_t type;
60 uint8_t reserved1[7];
61 uint64_t pal_proc;
62 uint64_t sal_proc;
63 uint64_t sal_proc_gp;
64 uint8_t reserved2[16];
65} sal_entrypoint_desc_t;
66
67/* This descriptor is unused on Itanium systems. */
68typedef struct {
69 uint8_t type;
70 uint8_t unused[31];
71} sal_memory_desc_t;
72
73typedef struct {
74 uint8_t type;
75 uint8_t features;
76 uint8_t reserved[14];
77} sal_platform_features_desc_t;
78
79typedef struct {
80 uint8_t type;
81 uint8_t tr_type;
82 uint8_t tr_number;
83 uint8_t reserved1[5];
84 uint64_t va;
85 uint64_t psc;
86 uint8_t reserved2[8];
87} sal_tr_desc_t;
88
89typedef struct {
90 uint8_t type;
91 uint8_t reserved[3];
92 uint32_t coherence_domains;
93 uint64_t coherence_domain_info;
94} sal_ptc_coherence_domain_desc_t;
95
96typedef struct {
97 uint8_t type;
98 uint8_t mechanism;
99 uint8_t reserved[6];
100 uint64_t vector;
101} sal_ap_wakeup_desc_t;
102
103extern void sal_system_table_parse(sal_system_table_header_t *);
104
105#endif
Note: See TracBrowser for help on using the repository browser.