source: trunk/tools/arch_info/boot_info.h @ 17

Last change on this file since 17 was 13, checked in by alain, 7 years ago

Few changes in the boot_info structure.

File size: 6.5 KB
Line 
1/*
2 * boot_info.h - informations passed by the bootloader to the kernel in each cluster.
3 *
4 * Author  Alain Greiner (june 2016)
5 *
6 * Copyright (c) UPMC Sorbonne Universites
7 *
8 * This file is part of ALMOS-MKH
9 *
10 * ALMOS-kernel is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; version 2.0 of the License.
13 *
14 * ALMOS-kernel is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with ALMOS-kernel; if not, write to the Free Software Foundation,
21 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22 */
23
24#ifndef _BOOT_INFO_H_
25#define _BOOT_INFO_H_
26
27#include <hal_types.h>
28#include <kernel_config.h>
29
30/*********************************************************************************************
31 * Boot-Info binary file signature
32 ********************************************************************************************/
33
34#define BOOT_INFO_SIGNATURE    0x12344321
35
36/*********************************************************************************************
37 * This structure defines the mapping between the hard-wired core identifier,
38 * and the composite index (cluster_identifier , local index).
39 ********************************************************************************************/
40
41typedef struct boot_core_s
42{
43    gid_t    gid;                     /*! hardware identifier                               */
44    lid_t    lid;                     /*! local index in cluster                            */
45    cxy_t    cxy;                     /*! cluster identifier                                */
46}
47boot_core_t;
48
49/*********************************************************************************************
50 * This structure defines the hardware connexion from one source device (identified by
51 * the tuple (dev_type/channel/is_rx), to a PIC or XCU component (input IRQ index).
52 ********************************************************************************************/
53
54typedef struct boot_irq_s
55{
56    uint32_t    dev_type;             /*! source device functionnal type                    */
57    uint8_t     channel;              /*! source device channel index                       */
58    uint8_t     is_rx;                /*! source device direction                           */
59    uint8_t     valid;                /*! Boolean :input IRQ connected                      */
60    uint8_t     reserved;             /*! padding                                           */
61} 
62boot_irq_t; 
63
64/*********************************************************************************************
65 * This structure defines all informations associated to a device in a given cluster.
66 * There is one device descriptor per peripheral channel.
67 ********************************************************************************************/
68
69typedef struct boot_device_s
70{
71    uint64_t    base;                 /*! segment physical base address                     */
72    uint32_t    type;                 /*! peripheral type (func | impl)                     */
73    uint32_t    channels;             /*! number of channels                                */
74    uint32_t    param0;               /*! semantic depends on peripherat type               */
75    uint32_t    param1;               /*! semantic depends on peripherat type               */
76    uint32_t    param2;               /*! semantic depends on peripherat type               */
77    uint32_t    param3;               /*! semantic depends on peripherat type               */
78    uint32_t    irqs;                 /*! number of input IRQs                              */
79    boot_irq_t  irq[32];              /*! array of input IRQS (PIC and ICU only)            */
80}
81boot_device_t;
82
83/*********************************************************************************************
84 * This structure defines the interface between the boot-loader and the kernel.
85 * In each cluster, the boot core build a local boot_info_t structure containing
86 * both global (trans-clusters) informations, and cluster specific informations.
87 ********************************************************************************************/
88
89typedef struct boot_info_s
90{
91    uint32_t      signature;                     /*! boot info signature                    */
92
93    // global platform parameters
94
95        uint32_t      paddr_width;                   /*! number of bits in physical address     */
96    uint32_t      x_width;                       /*! number of bits to code X coordinate    */
97    uint32_t      y_width;                       /*! number of bits to code Y coordinate    */
98        uint32_t      x_size;                        /*! number of cluster in a row             */
99        uint32_t      y_size;                        /*! number of cluster in a column          */
100        uint32_t      io_cxy;                        /*! IO cluster identifier                  */
101
102    // shared resources
103
104    uint32_t      ext_dev_nr;                    /*! number of external peripherals         */
105    boot_device_t ext_dev[CONFIG_MAX_EXT_DEV];   /*! array of external peripherals          */
106
107    // private resources (per cluster)
108
109        uint32_t      cxy;                           /*! cluster identifier                     */
110        uint32_t      cores_nr;                      /*! number of local cores in               */
111    boot_core_t   core[CONFIG_MAX_LOCAL_CORES];  /*! array of core descriptors              */ 
112        boot_device_t dev_icu;                       /*! embedded ICU peripheral                */
113        boot_device_t dev_mmc;                       /*! embedded MMC peripheral                */
114        boot_device_t dev_dma;                       /*! embedded DMA peripheral                */
115
116    uint32_t      pages_nr;                      /*! number of 4 Kbytes pages               */
117    uint32_t      pages_offset;                  /*! number of pages allocated for kernel   */
118
119    // kernel segments
120
121    intptr_t      kernel_code_start;             /*! kernel code base address               */
122    intptr_t      kernel_code_end;               /*! kernel code last address (excluded)    */
123    intptr_t      kernel_data_start;             /*! kernel data base address               */
124    intptr_t      kernel_data_end;               /*! kernel data last address (excluded)    */
125}
126boot_info_t;
127
128#endif  /* _BOOT_INFO_H_ */
Note: See TracBrowser for help on using the repository browser.