2 * Helper functions for working with the builtin symbol table
4 * Copyright (c) 2008-2009 Analog Devices Inc.
5 * Licensed under the GPL-2 or later.
9 /* We need the weak marking as this symbol is provided specially */
10 extern const char system_map[] __attribute__((weak));
12 /* Given an address, return a pointer to the symbol name and store
13 * the base address in caddr. So if the symbol map had an entry:
14 * 03fb9b7c_spi_cs_deactivate
15 * Then the following call:
17 * const char *sym = symbol_lookup(0x03fb9b80, &base);
18 * Would end up setting the variables like so:
20 * sym = "_spi_cs_deactivate";
22 const char *symbol_lookup(unsigned long addr, unsigned long *caddr)
24 const char *sym, *csym;
26 unsigned long sym_addr;
33 sym_addr = hextoul(sym, &esym);
39 sym += strlen(sym) + 1;