diff options
Diffstat (limited to 'scripts/mod')
| -rw-r--r-- | scripts/mod/file2alias.c | 47 | ||||
| -rw-r--r-- | scripts/mod/modpost.c | 9 |
2 files changed, 41 insertions, 15 deletions
diff --git a/scripts/mod/file2alias.c b/scripts/mod/file2alias.c index c0e14b3f2306..b89efe6e4c85 100644 --- a/scripts/mod/file2alias.c +++ b/scripts/mod/file2alias.c | |||
| @@ -46,11 +46,37 @@ struct devtable { | |||
| 46 | void *function; | 46 | void *function; |
| 47 | }; | 47 | }; |
| 48 | 48 | ||
| 49 | #define ___cat(a,b) a ## b | ||
| 50 | #define __cat(a,b) ___cat(a,b) | ||
| 51 | |||
| 52 | /* we need some special handling for this host tool running eventually on | ||
| 53 | * Darwin. The Mach-O section handling is a bit different than ELF section | ||
| 54 | * handling. The differnces in detail are: | ||
| 55 | * a) we have segments which have sections | ||
| 56 | * b) we need a API call to get the respective section symbols */ | ||
| 57 | #if defined(__MACH__) | ||
| 58 | #include <mach-o/getsect.h> | ||
| 59 | |||
| 60 | #define INIT_SECTION(name) do { \ | ||
| 61 | unsigned long name ## _len; \ | ||
| 62 | char *__cat(pstart_,name) = getsectdata("__TEXT", \ | ||
| 63 | #name, &__cat(name,_len)); \ | ||
| 64 | char *__cat(pstop_,name) = __cat(pstart_,name) + \ | ||
| 65 | __cat(name, _len); \ | ||
| 66 | __cat(__start_,name) = (void *)__cat(pstart_,name); \ | ||
| 67 | __cat(__stop_,name) = (void *)__cat(pstop_,name); \ | ||
| 68 | } while (0) | ||
| 69 | #define SECTION(name) __attribute__((section("__TEXT, " #name))) | ||
| 70 | |||
| 71 | struct devtable **__start___devtable, **__stop___devtable; | ||
| 72 | #else | ||
| 73 | #define INIT_SECTION(name) /* no-op for ELF */ | ||
| 74 | #define SECTION(name) __attribute__((section(#name))) | ||
| 75 | |||
| 49 | /* We construct a table of pointers in an ELF section (pointers generally | 76 | /* We construct a table of pointers in an ELF section (pointers generally |
| 50 | * go unpadded by gcc). ld creates boundary syms for us. */ | 77 | * go unpadded by gcc). ld creates boundary syms for us. */ |
| 51 | extern struct devtable *__start___devtable[], *__stop___devtable[]; | 78 | extern struct devtable *__start___devtable[], *__stop___devtable[]; |
| 52 | #define ___cat(a,b) a ## b | 79 | #endif /* __MACH__ */ |
| 53 | #define __cat(a,b) ___cat(a,b) | ||
| 54 | 80 | ||
| 55 | #if __GNUC__ == 3 && __GNUC_MINOR__ < 3 | 81 | #if __GNUC__ == 3 && __GNUC_MINOR__ < 3 |
| 56 | # define __used __attribute__((__unused__)) | 82 | # define __used __attribute__((__unused__)) |
| @@ -65,8 +91,8 @@ extern struct devtable *__start___devtable[], *__stop___devtable[]; | |||
| 65 | (type *)NULL, \ | 91 | (type *)NULL, \ |
| 66 | (char *)NULL)), \ | 92 | (char *)NULL)), \ |
| 67 | sizeof(type), (function) }; \ | 93 | sizeof(type), (function) }; \ |
| 68 | static struct devtable *__attribute__((section("__devtable"))) \ | 94 | static struct devtable *SECTION(__devtable) __used \ |
| 69 | __used __cat(devtable_ptr,__LINE__) = &__cat(devtable,__LINE__) | 95 | __cat(devtable_ptr,__LINE__) = &__cat(devtable,__LINE__) |
| 70 | 96 | ||
| 71 | #define ADD(str, sep, cond, field) \ | 97 | #define ADD(str, sep, cond, field) \ |
| 72 | do { \ | 98 | do { \ |
| @@ -823,16 +849,6 @@ static int do_spi_entry(const char *filename, struct spi_device_id *id, | |||
| 823 | } | 849 | } |
| 824 | ADD_TO_DEVTABLE("spi", struct spi_device_id, do_spi_entry); | 850 | ADD_TO_DEVTABLE("spi", struct spi_device_id, do_spi_entry); |
| 825 | 851 | ||
| 826 | /* Looks like: mcp:S */ | ||
| 827 | static int do_mcp_entry(const char *filename, struct mcp_device_id *id, | ||
| 828 | char *alias) | ||
| 829 | { | ||
| 830 | sprintf(alias, MCP_MODULE_PREFIX "%s", id->name); | ||
| 831 | |||
| 832 | return 1; | ||
| 833 | } | ||
| 834 | ADD_TO_DEVTABLE("mcp", struct mcp_device_id, do_mcp_entry); | ||
| 835 | |||
| 836 | static const struct dmifield { | 852 | static const struct dmifield { |
| 837 | const char *prefix; | 853 | const char *prefix; |
| 838 | int field; | 854 | int field; |
| @@ -942,7 +958,7 @@ static int do_isapnp_entry(const char *filename, | |||
| 942 | (id->function >> 12) & 0x0f, (id->function >> 8) & 0x0f); | 958 | (id->function >> 12) & 0x0f, (id->function >> 8) & 0x0f); |
| 943 | return 1; | 959 | return 1; |
| 944 | } | 960 | } |
| 945 | ADD_TO_DEVTABLE("isa", struct isapnp_device_id, do_isapnp_entry); | 961 | ADD_TO_DEVTABLE("isapnp", struct isapnp_device_id, do_isapnp_entry); |
| 946 | 962 | ||
| 947 | /* | 963 | /* |
| 948 | * Append a match expression for a single masked hex digit. | 964 | * Append a match expression for a single masked hex digit. |
| @@ -1090,6 +1106,7 @@ void handle_moddevtable(struct module *mod, struct elf_info *info, | |||
| 1090 | do_pnp_card_entries(symval, sym->st_size, mod); | 1106 | do_pnp_card_entries(symval, sym->st_size, mod); |
| 1091 | else { | 1107 | else { |
| 1092 | struct devtable **p; | 1108 | struct devtable **p; |
| 1109 | INIT_SECTION(__devtable); | ||
| 1093 | 1110 | ||
| 1094 | for (p = __start___devtable; p < __stop___devtable; p++) { | 1111 | for (p = __start___devtable; p < __stop___devtable; p++) { |
| 1095 | if (sym_is(name, namelen, (*p)->device_id)) { | 1112 | if (sym_is(name, namelen, (*p)->device_id)) { |
diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c index 2bd594e6d1b4..9adb667dd31a 100644 --- a/scripts/mod/modpost.c +++ b/scripts/mod/modpost.c | |||
| @@ -1494,6 +1494,13 @@ static int addend_386_rel(struct elf_info *elf, Elf_Shdr *sechdr, Elf_Rela *r) | |||
| 1494 | return 0; | 1494 | return 0; |
| 1495 | } | 1495 | } |
| 1496 | 1496 | ||
| 1497 | #ifndef R_ARM_CALL | ||
| 1498 | #define R_ARM_CALL 28 | ||
| 1499 | #endif | ||
| 1500 | #ifndef R_ARM_JUMP24 | ||
| 1501 | #define R_ARM_JUMP24 29 | ||
| 1502 | #endif | ||
| 1503 | |||
| 1497 | static int addend_arm_rel(struct elf_info *elf, Elf_Shdr *sechdr, Elf_Rela *r) | 1504 | static int addend_arm_rel(struct elf_info *elf, Elf_Shdr *sechdr, Elf_Rela *r) |
| 1498 | { | 1505 | { |
| 1499 | unsigned int r_typ = ELF_R_TYPE(r->r_info); | 1506 | unsigned int r_typ = ELF_R_TYPE(r->r_info); |
| @@ -1505,6 +1512,8 @@ static int addend_arm_rel(struct elf_info *elf, Elf_Shdr *sechdr, Elf_Rela *r) | |||
| 1505 | (elf->symtab_start + ELF_R_SYM(r->r_info)); | 1512 | (elf->symtab_start + ELF_R_SYM(r->r_info)); |
| 1506 | break; | 1513 | break; |
| 1507 | case R_ARM_PC24: | 1514 | case R_ARM_PC24: |
| 1515 | case R_ARM_CALL: | ||
| 1516 | case R_ARM_JUMP24: | ||
| 1508 | /* From ARM ABI: ((S + A) | T) - P */ | 1517 | /* From ARM ABI: ((S + A) | T) - P */ |
| 1509 | r->r_addend = (int)(long)(elf->hdr + | 1518 | r->r_addend = (int)(long)(elf->hdr + |
| 1510 | sechdr->sh_offset + | 1519 | sechdr->sh_offset + |
