Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Marek Vasut | 42ebaae | 2012-10-12 10:27:02 +0000 | [diff] [blame] | 2 | /* |
| 3 | * include/linker_lists.h |
| 4 | * |
| 5 | * Implementation of linker-generated arrays |
| 6 | * |
| 7 | * Copyright (C) 2012 Marek Vasut <marex@denx.de> |
Marek Vasut | 42ebaae | 2012-10-12 10:27:02 +0000 | [diff] [blame] | 8 | */ |
Albert ARIBAUD | ef123c5 | 2013-02-25 00:59:00 +0000 | [diff] [blame] | 9 | |
Masahiro Yamada | babb444 | 2014-02-05 10:52:52 +0900 | [diff] [blame] | 10 | #ifndef __LINKER_LISTS_H__ |
| 11 | #define __LINKER_LISTS_H__ |
| 12 | |
Masahiro Yamada | dc7cb46 | 2014-10-07 14:48:22 +0900 | [diff] [blame] | 13 | #include <linux/compiler.h> |
| 14 | |
Albert ARIBAUD | ef123c5 | 2013-02-25 00:59:00 +0000 | [diff] [blame] | 15 | /* |
Heinrich Schuchardt | d72fd7b | 2017-09-07 03:55:11 +0200 | [diff] [blame] | 16 | * There is no use in including this from ASM files. |
Albert ARIBAUD | ef123c5 | 2013-02-25 00:59:00 +0000 | [diff] [blame] | 17 | * So just don't define anything when included from ASM. |
| 18 | */ |
| 19 | |
| 20 | #if !defined(__ASSEMBLY__) |
| 21 | |
| 22 | /** |
Bin Meng | 7e378b8 | 2015-07-19 00:20:02 +0800 | [diff] [blame] | 23 | * llsym() - Access a linker-generated array entry |
Simon Glass | 72538f4 | 2015-03-25 12:21:49 -0600 | [diff] [blame] | 24 | * @_type: Data type of the entry |
| 25 | * @_name: Name of the entry |
| 26 | * @_list: name of the list. Should contain only characters allowed |
| 27 | * in a C variable name! |
| 28 | */ |
| 29 | #define llsym(_type, _name, _list) \ |
| 30 | ((_type *)&_u_boot_list_2_##_list##_2_##_name) |
| 31 | |
| 32 | /** |
Marek Vasut | 42ebaae | 2012-10-12 10:27:02 +0000 | [diff] [blame] | 33 | * ll_entry_declare() - Declare linker-generated array entry |
| 34 | * @_type: Data type of the entry |
| 35 | * @_name: Name of the entry |
Albert ARIBAUD | ef123c5 | 2013-02-25 00:59:00 +0000 | [diff] [blame] | 36 | * @_list: name of the list. Should contain only characters allowed |
| 37 | * in a C variable name! |
Marek Vasut | 42ebaae | 2012-10-12 10:27:02 +0000 | [diff] [blame] | 38 | * |
| 39 | * This macro declares a variable that is placed into a linker-generated |
| 40 | * array. This is a basic building block for more advanced use of linker- |
| 41 | * generated arrays. The user is expected to build their own macro wrapper |
| 42 | * around this one. |
| 43 | * |
Albert ARIBAUD | ef123c5 | 2013-02-25 00:59:00 +0000 | [diff] [blame] | 44 | * A variable declared using this macro must be compile-time initialized. |
Marek Vasut | 42ebaae | 2012-10-12 10:27:02 +0000 | [diff] [blame] | 45 | * |
| 46 | * Special precaution must be made when using this macro: |
Marek Vasut | 42ebaae | 2012-10-12 10:27:02 +0000 | [diff] [blame] | 47 | * |
Albert ARIBAUD | ef123c5 | 2013-02-25 00:59:00 +0000 | [diff] [blame] | 48 | * 1) The _type must not contain the "static" keyword, otherwise the |
| 49 | * entry is generated and can be iterated but is listed in the map |
| 50 | * file and cannot be retrieved by name. |
Marek Vasut | 42ebaae | 2012-10-12 10:27:02 +0000 | [diff] [blame] | 51 | * |
Albert ARIBAUD | ef123c5 | 2013-02-25 00:59:00 +0000 | [diff] [blame] | 52 | * 2) In case a section is declared that contains some array elements AND |
| 53 | * a subsection of this section is declared and contains some elements, |
| 54 | * it is imperative that the elements are of the same type. |
Marek Vasut | 42ebaae | 2012-10-12 10:27:02 +0000 | [diff] [blame] | 55 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 56 | * 3) In case an outer section is declared that contains some array elements |
Albert ARIBAUD | ef123c5 | 2013-02-25 00:59:00 +0000 | [diff] [blame] | 57 | * AND an inner subsection of this section is declared and contains some |
Marek Vasut | 42ebaae | 2012-10-12 10:27:02 +0000 | [diff] [blame] | 58 | * elements, then when traversing the outer section, even the elements of |
| 59 | * the inner sections are present in the array. |
| 60 | * |
| 61 | * Example: |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 62 | * |
| 63 | * :: |
| 64 | * |
| 65 | * ll_entry_declare(struct my_sub_cmd, my_sub_cmd, cmd_sub) = { |
| 66 | * .x = 3, |
| 67 | * .y = 4, |
| 68 | * }; |
Marek Vasut | 42ebaae | 2012-10-12 10:27:02 +0000 | [diff] [blame] | 69 | */ |
Albert ARIBAUD | ef123c5 | 2013-02-25 00:59:00 +0000 | [diff] [blame] | 70 | #define ll_entry_declare(_type, _name, _list) \ |
| 71 | _type _u_boot_list_2_##_list##_2_##_name __aligned(4) \ |
| 72 | __attribute__((unused, \ |
| 73 | section(".u_boot_list_2_"#_list"_2_"#_name))) |
| 74 | |
| 75 | /** |
Simon Glass | 3fcc3af | 2014-10-01 19:57:20 -0600 | [diff] [blame] | 76 | * ll_entry_declare_list() - Declare a list of link-generated array entries |
| 77 | * @_type: Data type of each entry |
| 78 | * @_name: Name of the entry |
| 79 | * @_list: name of the list. Should contain only characters allowed |
| 80 | * in a C variable name! |
| 81 | * |
| 82 | * This is like ll_entry_declare() but creates multiple entries. It should |
| 83 | * be assigned to an array. |
| 84 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 85 | * :: |
| 86 | * |
| 87 | * ll_entry_declare_list(struct my_sub_cmd, my_sub_cmd, cmd_sub) = { |
| 88 | * { .x = 3, .y = 4 }, |
| 89 | * { .x = 8, .y = 2 }, |
| 90 | * { .x = 1, .y = 7 } |
| 91 | * }; |
Simon Glass | 3fcc3af | 2014-10-01 19:57:20 -0600 | [diff] [blame] | 92 | */ |
| 93 | #define ll_entry_declare_list(_type, _name, _list) \ |
| 94 | _type _u_boot_list_2_##_list##_2_##_name[] __aligned(4) \ |
| 95 | __attribute__((unused, \ |
| 96 | section(".u_boot_list_2_"#_list"_2_"#_name))) |
| 97 | |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 98 | /* |
Albert ARIBAUD | ef123c5 | 2013-02-25 00:59:00 +0000 | [diff] [blame] | 99 | * We need a 0-byte-size type for iterator symbols, and the compiler |
| 100 | * does not allow defining objects of C type 'void'. Using an empty |
| 101 | * struct is allowed by the compiler, but causes gcc versions 4.4 and |
| 102 | * below to complain about aliasing. Therefore we use the next best |
| 103 | * thing: zero-sized arrays, which are both 0-byte-size and exempt from |
| 104 | * aliasing warnings. |
| 105 | */ |
Marek Vasut | 42ebaae | 2012-10-12 10:27:02 +0000 | [diff] [blame] | 106 | |
| 107 | /** |
| 108 | * ll_entry_start() - Point to first entry of linker-generated array |
| 109 | * @_type: Data type of the entry |
Albert ARIBAUD | ef123c5 | 2013-02-25 00:59:00 +0000 | [diff] [blame] | 110 | * @_list: Name of the list in which this entry is placed |
Marek Vasut | 42ebaae | 2012-10-12 10:27:02 +0000 | [diff] [blame] | 111 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 112 | * This function returns ``(_type *)`` pointer to the very first entry of a |
Marek Vasut | 42ebaae | 2012-10-12 10:27:02 +0000 | [diff] [blame] | 113 | * linker-generated array placed into subsection of .u_boot_list section |
Albert ARIBAUD | ef123c5 | 2013-02-25 00:59:00 +0000 | [diff] [blame] | 114 | * specified by _list argument. |
| 115 | * |
| 116 | * Since this macro defines an array start symbol, its leftmost index |
| 117 | * must be 2 and its rightmost index must be 1. |
Marek Vasut | 42ebaae | 2012-10-12 10:27:02 +0000 | [diff] [blame] | 118 | * |
| 119 | * Example: |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 120 | * |
| 121 | * :: |
| 122 | * |
| 123 | * struct my_sub_cmd *msc = ll_entry_start(struct my_sub_cmd, cmd_sub); |
Marek Vasut | 42ebaae | 2012-10-12 10:27:02 +0000 | [diff] [blame] | 124 | */ |
Albert ARIBAUD | ef123c5 | 2013-02-25 00:59:00 +0000 | [diff] [blame] | 125 | #define ll_entry_start(_type, _list) \ |
| 126 | ({ \ |
| 127 | static char start[0] __aligned(4) __attribute__((unused, \ |
| 128 | section(".u_boot_list_2_"#_list"_1"))); \ |
| 129 | (_type *)&start; \ |
| 130 | }) |
Marek Vasut | 42ebaae | 2012-10-12 10:27:02 +0000 | [diff] [blame] | 131 | |
| 132 | /** |
Albert ARIBAUD | ef123c5 | 2013-02-25 00:59:00 +0000 | [diff] [blame] | 133 | * ll_entry_end() - Point after last entry of linker-generated array |
| 134 | * @_type: Data type of the entry |
| 135 | * @_list: Name of the list in which this entry is placed |
| 136 | * (with underscores instead of dots) |
| 137 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 138 | * This function returns ``(_type *)`` pointer after the very last entry of |
Albert ARIBAUD | ef123c5 | 2013-02-25 00:59:00 +0000 | [diff] [blame] | 139 | * a linker-generated array placed into subsection of .u_boot_list |
| 140 | * section specified by _list argument. |
| 141 | * |
| 142 | * Since this macro defines an array end symbol, its leftmost index |
| 143 | * must be 2 and its rightmost index must be 3. |
| 144 | * |
| 145 | * Example: |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 146 | * |
| 147 | * :: |
| 148 | * |
| 149 | * struct my_sub_cmd *msc = ll_entry_end(struct my_sub_cmd, cmd_sub); |
Albert ARIBAUD | ef123c5 | 2013-02-25 00:59:00 +0000 | [diff] [blame] | 150 | */ |
| 151 | #define ll_entry_end(_type, _list) \ |
| 152 | ({ \ |
Bin Meng | 7e378b8 | 2015-07-19 00:20:02 +0800 | [diff] [blame] | 153 | static char end[0] __aligned(4) __attribute__((unused, \ |
Albert ARIBAUD | ef123c5 | 2013-02-25 00:59:00 +0000 | [diff] [blame] | 154 | section(".u_boot_list_2_"#_list"_3"))); \ |
| 155 | (_type *)&end; \ |
| 156 | }) |
| 157 | /** |
Marek Vasut | 42ebaae | 2012-10-12 10:27:02 +0000 | [diff] [blame] | 158 | * ll_entry_count() - Return the number of elements in linker-generated array |
| 159 | * @_type: Data type of the entry |
Albert ARIBAUD | ef123c5 | 2013-02-25 00:59:00 +0000 | [diff] [blame] | 160 | * @_list: Name of the list of which the number of elements is computed |
Marek Vasut | 42ebaae | 2012-10-12 10:27:02 +0000 | [diff] [blame] | 161 | * |
| 162 | * This function returns the number of elements of a linker-generated array |
Albert ARIBAUD | ef123c5 | 2013-02-25 00:59:00 +0000 | [diff] [blame] | 163 | * placed into subsection of .u_boot_list section specified by _list |
Marek Vasut | 42ebaae | 2012-10-12 10:27:02 +0000 | [diff] [blame] | 164 | * argument. The result is of an unsigned int type. |
| 165 | * |
| 166 | * Example: |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 167 | * |
| 168 | * :: |
| 169 | * |
| 170 | * int i; |
| 171 | * const unsigned int count = ll_entry_count(struct my_sub_cmd, cmd_sub); |
| 172 | * struct my_sub_cmd *msc = ll_entry_start(struct my_sub_cmd, cmd_sub); |
| 173 | * for (i = 0; i < count; i++, msc++) |
| 174 | * printf("Entry %i, x=%i y=%i\n", i, msc->x, msc->y); |
Marek Vasut | 42ebaae | 2012-10-12 10:27:02 +0000 | [diff] [blame] | 175 | */ |
Albert ARIBAUD | ef123c5 | 2013-02-25 00:59:00 +0000 | [diff] [blame] | 176 | #define ll_entry_count(_type, _list) \ |
Marek Vasut | 42ebaae | 2012-10-12 10:27:02 +0000 | [diff] [blame] | 177 | ({ \ |
Albert ARIBAUD | ef123c5 | 2013-02-25 00:59:00 +0000 | [diff] [blame] | 178 | _type *start = ll_entry_start(_type, _list); \ |
| 179 | _type *end = ll_entry_end(_type, _list); \ |
| 180 | unsigned int _ll_result = end - start; \ |
Marek Vasut | 42ebaae | 2012-10-12 10:27:02 +0000 | [diff] [blame] | 181 | _ll_result; \ |
| 182 | }) |
| 183 | |
Marek Vasut | 42ebaae | 2012-10-12 10:27:02 +0000 | [diff] [blame] | 184 | /** |
| 185 | * ll_entry_get() - Retrieve entry from linker-generated array by name |
| 186 | * @_type: Data type of the entry |
| 187 | * @_name: Name of the entry |
Albert ARIBAUD | ef123c5 | 2013-02-25 00:59:00 +0000 | [diff] [blame] | 188 | * @_list: Name of the list in which this entry is placed |
Marek Vasut | 42ebaae | 2012-10-12 10:27:02 +0000 | [diff] [blame] | 189 | * |
Bin Meng | 7e378b8 | 2015-07-19 00:20:02 +0800 | [diff] [blame] | 190 | * This function returns a pointer to a particular entry in linker-generated |
| 191 | * array identified by the subsection of u_boot_list where the entry resides |
Marek Vasut | 42ebaae | 2012-10-12 10:27:02 +0000 | [diff] [blame] | 192 | * and it's name. |
| 193 | * |
| 194 | * Example: |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 195 | * |
| 196 | * :: |
| 197 | * |
| 198 | * ll_entry_declare(struct my_sub_cmd, my_sub_cmd, cmd_sub) = { |
| 199 | * .x = 3, |
| 200 | * .y = 4, |
| 201 | * }; |
| 202 | * ... |
| 203 | * struct my_sub_cmd *c = ll_entry_get(struct my_sub_cmd, my_sub_cmd, cmd_sub); |
Marek Vasut | 42ebaae | 2012-10-12 10:27:02 +0000 | [diff] [blame] | 204 | */ |
Albert ARIBAUD | ef123c5 | 2013-02-25 00:59:00 +0000 | [diff] [blame] | 205 | #define ll_entry_get(_type, _name, _list) \ |
Marek Vasut | 42ebaae | 2012-10-12 10:27:02 +0000 | [diff] [blame] | 206 | ({ \ |
Albert ARIBAUD | ef123c5 | 2013-02-25 00:59:00 +0000 | [diff] [blame] | 207 | extern _type _u_boot_list_2_##_list##_2_##_name; \ |
| 208 | _type *_ll_result = \ |
Bin Meng | 7e378b8 | 2015-07-19 00:20:02 +0800 | [diff] [blame] | 209 | &_u_boot_list_2_##_list##_2_##_name; \ |
Marek Vasut | 42ebaae | 2012-10-12 10:27:02 +0000 | [diff] [blame] | 210 | _ll_result; \ |
| 211 | }) |
| 212 | |
Albert ARIBAUD | ef123c5 | 2013-02-25 00:59:00 +0000 | [diff] [blame] | 213 | /** |
| 214 | * ll_start() - Point to first entry of first linker-generated array |
| 215 | * @_type: Data type of the entry |
| 216 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 217 | * This function returns ``(_type *)`` pointer to the very first entry of |
Albert ARIBAUD | ef123c5 | 2013-02-25 00:59:00 +0000 | [diff] [blame] | 218 | * the very first linker-generated array. |
| 219 | * |
| 220 | * Since this macro defines the start of the linker-generated arrays, |
| 221 | * its leftmost index must be 1. |
| 222 | * |
| 223 | * Example: |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 224 | * |
| 225 | * :: |
| 226 | * |
| 227 | * struct my_sub_cmd *msc = ll_start(struct my_sub_cmd); |
Albert ARIBAUD | ef123c5 | 2013-02-25 00:59:00 +0000 | [diff] [blame] | 228 | */ |
| 229 | #define ll_start(_type) \ |
| 230 | ({ \ |
| 231 | static char start[0] __aligned(4) __attribute__((unused, \ |
| 232 | section(".u_boot_list_1"))); \ |
| 233 | (_type *)&start; \ |
| 234 | }) |
| 235 | |
| 236 | /** |
Bin Meng | 7e378b8 | 2015-07-19 00:20:02 +0800 | [diff] [blame] | 237 | * ll_end() - Point after last entry of last linker-generated array |
Albert ARIBAUD | ef123c5 | 2013-02-25 00:59:00 +0000 | [diff] [blame] | 238 | * @_type: Data type of the entry |
| 239 | * |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 240 | * This function returns ``(_type *)`` pointer after the very last entry of |
Albert ARIBAUD | ef123c5 | 2013-02-25 00:59:00 +0000 | [diff] [blame] | 241 | * the very last linker-generated array. |
| 242 | * |
| 243 | * Since this macro defines the end of the linker-generated arrays, |
| 244 | * its leftmost index must be 3. |
| 245 | * |
| 246 | * Example: |
Mario Six | 78a88f7 | 2018-07-10 08:40:17 +0200 | [diff] [blame] | 247 | * |
| 248 | * :: |
| 249 | * |
| 250 | * struct my_sub_cmd *msc = ll_end(struct my_sub_cmd); |
Albert ARIBAUD | ef123c5 | 2013-02-25 00:59:00 +0000 | [diff] [blame] | 251 | */ |
| 252 | #define ll_end(_type) \ |
| 253 | ({ \ |
Bin Meng | 7e378b8 | 2015-07-19 00:20:02 +0800 | [diff] [blame] | 254 | static char end[0] __aligned(4) __attribute__((unused, \ |
Albert ARIBAUD | ef123c5 | 2013-02-25 00:59:00 +0000 | [diff] [blame] | 255 | section(".u_boot_list_3"))); \ |
| 256 | (_type *)&end; \ |
| 257 | }) |
| 258 | |
| 259 | #endif /* __ASSEMBLY__ */ |
| 260 | |
Marek Vasut | 42ebaae | 2012-10-12 10:27:02 +0000 | [diff] [blame] | 261 | #endif /* __LINKER_LISTS_H__ */ |