From 9e7758b2774cd3410d3f2477181e8a62a89399ce Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Wed, 31 Aug 2011 16:03:10 +0000 Subject: 2011-08-31 Sebastian Huber * startup/bspgetworkarea.c, startup/linkcmds.base: Removed files. * include/mpc55xx-config.h, make/custom/mpc5674fevb.cfg, startup/early-init.c, startup/ebi-cal-cs-config.c, startup/ebi-cs-config.c, startup/exc-vector-base.S, startup/fmpll-syncr-vals.c, startup/linkcmds.mpc5674fevb, startup/mmu-config.c, startup/siu-pcr-config.c: New files. * Makefile.am, preinstall.am: Reflect changes above. * startup/linkcmds.gwlcfm, startup/linkcmds.mpc5566evb, startup/linkcmds.phycore_mpc5554: Use linker command base file. * configure.ac: Support MPC5674F. Changed eSCI options. * clock/clock-config.c: Support MPC5674F. * i2c/i2c_init.c, network/smsc9218i.c, startup/sd-card-init.c: Update due to API changes. * include/bsp.h: Define BSP_INTERRUPT_STACK_AT_WORK_AREA_BEGIN. * network/if_smc.c: Use HAS_SMC91111. * startup/start.S, startup/bspstart.c: Moved low-level initialization into new files. Overall cleanup. --- .../powerpc/mpc55xxevb/include/mpc55xx-config.h | 65 ++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 c/src/lib/libbsp/powerpc/mpc55xxevb/include/mpc55xx-config.h (limited to 'c/src/lib/libbsp/powerpc/mpc55xxevb/include/mpc55xx-config.h') diff --git a/c/src/lib/libbsp/powerpc/mpc55xxevb/include/mpc55xx-config.h b/c/src/lib/libbsp/powerpc/mpc55xxevb/include/mpc55xx-config.h new file mode 100644 index 0000000000..181e519921 --- /dev/null +++ b/c/src/lib/libbsp/powerpc/mpc55xxevb/include/mpc55xx-config.h @@ -0,0 +1,65 @@ +/** + * @file + * + * @ingroup mpc55xx + * + * @brief MPC55XX low-level configuration. + */ + +/* + * Copyright (c) 2008-2011 embedded brains GmbH. All rights reserved. + * + * embedded brains GmbH + * Obere Lagerstr. 30 + * 82178 Puchheim + * Germany + * + * + * The license and distribution terms for this file may be + * found in the file LICENSE in this distribution or at + * http://www.rtems.com/license/LICENSE. + * + * $Id$ + */ + +#ifndef LIBBSP_POWERPC_MPC55XXEVB_MPC55XX_CONFIG_H +#define LIBBSP_POWERPC_MPC55XXEVB_MPC55XX_CONFIG_H + +#include + +#include +#include + +#ifdef __cplusplus +extern "C" { +#endif /* __cplusplus */ + +typedef struct { + uint16_t index; + uint16_t count; + union SIU_PCR_tag pcr; +} mpc55xx_siu_pcr_config_entry; + +extern const mpc55xx_siu_pcr_config_entry mpc55xx_siu_pcr_config []; + +extern const size_t mpc55xx_siu_pcr_config_count []; + +extern const struct MMU_tag mpc55xx_mmu_config []; + +extern const size_t mpc55xx_mmu_config_count []; + +extern const struct EBI_CS_tag mpc55xx_ebi_cs_config []; + +extern const size_t mpc55xx_ebi_cs_config_count []; + +extern const struct EBI_CAL_CS_tag mpc55xx_ebi_cal_cs_config []; + +extern const size_t mpc55xx_ebi_cal_cs_config_count []; + +void mpc55xx_early_init(void); + +#ifdef __cplusplus +} +#endif /* __cplusplus */ + +#endif /* LIBBSP_POWERPC_MPC55XXEVB_MPC55XX_CONFIG_H */ -- cgit v1.2.3