Graeme Russ | 311b1a2 | 2011-11-08 02:33:18 +0000 | [diff] [blame^] | 1 | /* |
| 2 | * Adapted from Linux v2.6.36 kernel: arch/powerpc/kernel/asm-offsets.c |
| 3 | * |
| 4 | * This program is used to generate definitions needed by |
| 5 | * assembly language modules. |
| 6 | * |
| 7 | * We use the technique used in the OSF Mach kernel code: |
| 8 | * generate asm statements containing #defines, |
| 9 | * compile this file to assembler, and then extract the |
| 10 | * #defines from the assembly-language output. |
| 11 | * |
| 12 | * This program is free software; you can redistribute it and/or |
| 13 | * modify it under the terms of the GNU General Public License |
| 14 | * as published by the Free Software Foundation; either version |
| 15 | * 2 of the License, or (at your option) any later version. |
| 16 | */ |
| 17 | |
| 18 | #include <common.h> |
| 19 | #include <asm/arch/sc520.h> |
| 20 | |
| 21 | #include <linux/kbuild.h> |
| 22 | |
| 23 | int main(void) |
| 24 | { |
| 25 | DEFINE(GENERATED_GD_RELOC_OFF, offsetof(gd_t, reloc_off)); |
| 26 | |
| 27 | DEFINE(GENERATED_SC520_PAR0, offsetof(struct sc520_mmcr, par[0])); |
| 28 | DEFINE(GENERATED_SC520_PAR1, offsetof(struct sc520_mmcr, par[1])); |
| 29 | DEFINE(GENERATED_SC520_PAR2, offsetof(struct sc520_mmcr, par[2])); |
| 30 | DEFINE(GENERATED_SC520_PAR3, offsetof(struct sc520_mmcr, par[3])); |
| 31 | DEFINE(GENERATED_SC520_PAR4, offsetof(struct sc520_mmcr, par[4])); |
| 32 | DEFINE(GENERATED_SC520_PAR5, offsetof(struct sc520_mmcr, par[5])); |
| 33 | DEFINE(GENERATED_SC520_PAR6, offsetof(struct sc520_mmcr, par[6])); |
| 34 | DEFINE(GENERATED_SC520_PAR7, offsetof(struct sc520_mmcr, par[7])); |
| 35 | DEFINE(GENERATED_SC520_PAR8, offsetof(struct sc520_mmcr, par[8])); |
| 36 | DEFINE(GENERATED_SC520_PAR9, offsetof(struct sc520_mmcr, par[9])); |
| 37 | DEFINE(GENERATED_SC520_PAR10, offsetof(struct sc520_mmcr, par[10])); |
| 38 | DEFINE(GENERATED_SC520_PAR11, offsetof(struct sc520_mmcr, par[11])); |
| 39 | DEFINE(GENERATED_SC520_PAR12, offsetof(struct sc520_mmcr, par[12])); |
| 40 | DEFINE(GENERATED_SC520_PAR13, offsetof(struct sc520_mmcr, par[13])); |
| 41 | DEFINE(GENERATED_SC520_PAR14, offsetof(struct sc520_mmcr, par[14])); |
| 42 | DEFINE(GENERATED_SC520_PAR15, offsetof(struct sc520_mmcr, par[15])); |
| 43 | |
| 44 | return 0; |
| 45 | } |