uboot/arch/arm/cpu/arm926ejs/mx25/asm-offsets.c
<<
>>
Prefs
   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/imx-regs.h>
  20
  21#include <linux/kbuild.h>
  22
  23int main(void)
  24{
  25        /* Clock Control Module */
  26        DEFINE(CCM_CCTL, offsetof(struct ccm_regs, cctl));
  27        DEFINE(CCM_CGCR0, offsetof(struct ccm_regs, cgr0));
  28        DEFINE(CCM_CGCR1, offsetof(struct ccm_regs, cgr1));
  29        DEFINE(CCM_CGCR2, offsetof(struct ccm_regs, cgr2));
  30        DEFINE(CCM_PCDR2, offsetof(struct ccm_regs, pcdr[2]));
  31        DEFINE(CCM_MCR, offsetof(struct ccm_regs, mcr));
  32
  33        /* Enhanced SDRAM Controller */
  34        DEFINE(ESDRAMC_ESDCTL0, offsetof(struct esdramc_regs, ctl0));
  35        DEFINE(ESDRAMC_ESDCFG0, offsetof(struct esdramc_regs, cfg0));
  36        DEFINE(ESDRAMC_ESDMISC, offsetof(struct esdramc_regs, misc));
  37
  38        /* Multi-Layer AHB Crossbar Switch */
  39        DEFINE(MAX_MPR0, offsetof(struct max_regs, mpr0));
  40        DEFINE(MAX_SGPCR0, offsetof(struct max_regs, sgpcr0));
  41        DEFINE(MAX_MPR1, offsetof(struct max_regs, mpr1));
  42        DEFINE(MAX_SGPCR1, offsetof(struct max_regs, sgpcr1));
  43        DEFINE(MAX_MPR2, offsetof(struct max_regs, mpr2));
  44        DEFINE(MAX_SGPCR2, offsetof(struct max_regs, sgpcr2));
  45        DEFINE(MAX_MPR3, offsetof(struct max_regs, mpr3));
  46        DEFINE(MAX_SGPCR3, offsetof(struct max_regs, sgpcr3));
  47        DEFINE(MAX_MPR4, offsetof(struct max_regs, mpr4));
  48        DEFINE(MAX_SGPCR4, offsetof(struct max_regs, sgpcr4));
  49        DEFINE(MAX_MGPCR0, offsetof(struct max_regs, mgpcr0));
  50        DEFINE(MAX_MGPCR1, offsetof(struct max_regs, mgpcr1));
  51        DEFINE(MAX_MGPCR2, offsetof(struct max_regs, mgpcr2));
  52        DEFINE(MAX_MGPCR3, offsetof(struct max_regs, mgpcr3));
  53        DEFINE(MAX_MGPCR4, offsetof(struct max_regs, mgpcr4));
  54
  55        /* AHB <-> IP-Bus Interface */
  56        DEFINE(AIPS_MPR_0_7, offsetof(struct aips_regs, mpr_0_7));
  57        DEFINE(AIPS_MPR_8_15, offsetof(struct aips_regs, mpr_8_15));
  58
  59        return 0;
  60}
  61