mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-17 02:08:38 +00:00
35fe948e3b
The BSC9132 is a highly integrated device that targets the evolving Microcell, Picocell, and Enterprise-Femto base station market subsegments. The BSC9132 device combines Power Architecture e500 and DSP StarCore SC3850 core technologies with MAPLE-B2P baseband acceleration processing elements to address the need for a high performance, low cost, integrated solution that handles all required processing layers without the need for an external device except for an RF transceiver or, in a Micro base station configuration, a host device that handles the L3/L4 and handover between sectors. The BSC9132 SoC includes the following function and features: - Power Architecture subsystem including two e500 processors with 512-Kbyte shared L2 cache - Two StarCore SC3850 DSP subsystems, each with a 512-Kbyte private L2 cache - 32 Kbyte of shared M3 memory - The Multi Accelerator Platform Engine for Pico BaseStation Baseband Processing (MAPLE-B2P) - Two DDR3/3L memory interfaces with 32-bit data width (40 bits including ECC), up to 1333 MHz data rate - Dedicated security engine featuring trusted boot - Two DMA controllers - OCNDMA with four bidirectional channels - SysDMA with sixteen bidirectional channels - Interfaces - Four-lane SerDes PHY - PCI Express controller complies with the PEX Specification-Rev 2.0 - Two Common Public Radio Interface (CPRI) controller lanes - High-speed USB 2.0 host and device controller with ULPI interface - Enhanced secure digital (SD/MMC) host controller (eSDHC) - Antenna interface controller (AIC), supporting four industry standard JESD207/four custom ADI RF interfaces - ADI lanes support both full duplex FDD support & half duplex TDD - Universal Subscriber Identity Module (USIM) interface that facilitates communication to SIM cards or Eurochip pre-paid phone cards - Two DUART, two eSPI, and two I2C controllers - Integrated Flash memory controller (IFC) - GPIO - Sixteen 32-bit timers Signed-off-by: Naveen Burmi <NaveenBurmi@freescale.com> Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com> Signed-off-by: Prabhakar Kushwaha <prabhakar@freescale.com> Signed-off-by: Andy Fleming <afleming@freescale.com>
175 lines
5.2 KiB
Makefile
175 lines
5.2 KiB
Makefile
#
|
|
# (C) Copyright 2006
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
# (C) Copyright 2002,2003 Motorola Inc.
|
|
# Xianghua Xiao,X.Xiao@motorola.com
|
|
#
|
|
# See file CREDITS for list of people who contributed to this
|
|
# project.
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License as
|
|
# published by the Free Software Foundation; either version 2 of
|
|
# the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
# MA 02111-1307 USA
|
|
#
|
|
|
|
include $(TOPDIR)/config.mk
|
|
|
|
LIB = $(obj)lib$(CPU).o
|
|
|
|
MINIMAL=
|
|
|
|
ifdef CONFIG_SPL_BUILD
|
|
ifdef CONFIG_SPL_INIT_MINIMAL
|
|
MINIMAL=y
|
|
endif
|
|
endif
|
|
|
|
START = start.o resetvec.o
|
|
|
|
ifdef MINIMAL
|
|
|
|
COBJS-y += cpu_init_early.o tlb.o spl_minimal.o
|
|
|
|
else
|
|
|
|
SOBJS-$(CONFIG_MP) += release.o
|
|
SOBJS = $(SOBJS-y)
|
|
|
|
COBJS-$(CONFIG_CMD_ERRATA) += cmd_errata.o
|
|
COBJS-$(CONFIG_CPM2) += commproc.o
|
|
|
|
# supports ddr1
|
|
COBJS-$(CONFIG_MPC8540) += ddr-gen1.o
|
|
COBJS-$(CONFIG_MPC8560) += ddr-gen1.o
|
|
COBJS-$(CONFIG_MPC8541) += ddr-gen1.o
|
|
COBJS-$(CONFIG_MPC8555) += ddr-gen1.o
|
|
|
|
# supports ddr1/2
|
|
COBJS-$(CONFIG_MPC8548) += ddr-gen2.o
|
|
COBJS-$(CONFIG_MPC8568) += ddr-gen2.o
|
|
COBJS-$(CONFIG_MPC8544) += ddr-gen2.o
|
|
|
|
# supports ddr1/2/3
|
|
COBJS-$(CONFIG_MPC8572) += ddr-gen3.o
|
|
COBJS-$(CONFIG_MPC8536) += ddr-gen3.o
|
|
COBJS-$(CONFIG_MPC8569) += ddr-gen3.o
|
|
COBJS-$(CONFIG_P1010) += ddr-gen3.o
|
|
COBJS-$(CONFIG_P1011) += ddr-gen3.o
|
|
COBJS-$(CONFIG_P1012) += ddr-gen3.o
|
|
COBJS-$(CONFIG_P1013) += ddr-gen3.o
|
|
COBJS-$(CONFIG_P1014) += ddr-gen3.o
|
|
COBJS-$(CONFIG_P1020) += ddr-gen3.o
|
|
COBJS-$(CONFIG_P1021) += ddr-gen3.o
|
|
COBJS-$(CONFIG_P1022) += ddr-gen3.o
|
|
COBJS-$(CONFIG_P1024) += ddr-gen3.o
|
|
COBJS-$(CONFIG_P1025) += ddr-gen3.o
|
|
COBJS-$(CONFIG_P2010) += ddr-gen3.o
|
|
COBJS-$(CONFIG_P2020) += ddr-gen3.o
|
|
COBJS-$(CONFIG_PPC_P2041) += ddr-gen3.o
|
|
COBJS-$(CONFIG_PPC_P3041) += ddr-gen3.o
|
|
COBJS-$(CONFIG_PPC_P4080) += ddr-gen3.o
|
|
COBJS-$(CONFIG_PPC_P5020) += ddr-gen3.o
|
|
COBJS-$(CONFIG_PPC_P5040) += ddr-gen3.o
|
|
COBJS-$(CONFIG_PPC_T4240) += ddr-gen3.o
|
|
COBJS-$(CONFIG_PPC_B4420) += ddr-gen3.o
|
|
COBJS-$(CONFIG_PPC_B4860) += ddr-gen3.o
|
|
COBJS-$(CONFIG_BSC9131) += ddr-gen3.o
|
|
COBJS-$(CONFIG_BSC9132) += ddr-gen3.o
|
|
|
|
COBJS-$(CONFIG_CPM2) += ether_fcc.o
|
|
COBJS-$(CONFIG_OF_LIBFDT) += fdt.o
|
|
COBJS-$(CONFIG_FSL_CORENET) += liodn.o
|
|
COBJS-$(CONFIG_MP) += mp.o
|
|
COBJS-$(CONFIG_PCI) += pci.o
|
|
COBJS-$(CONFIG_SYS_DPAA_QBMAN) += portals.o
|
|
|
|
# various SoC specific assignments
|
|
COBJS-$(CONFIG_PPC_P2041) += p2041_ids.o
|
|
COBJS-$(CONFIG_PPC_P3041) += p3041_ids.o
|
|
COBJS-$(CONFIG_PPC_P4080) += p4080_ids.o
|
|
COBJS-$(CONFIG_PPC_P5020) += p5020_ids.o
|
|
COBJS-$(CONFIG_PPC_P5040) += p5040_ids.o
|
|
COBJS-$(CONFIG_PPC_T4240) += t4240_ids.o
|
|
COBJS-$(CONFIG_PPC_B4420) += b4860_ids.o
|
|
COBJS-$(CONFIG_PPC_B4860) += b4860_ids.o
|
|
|
|
COBJS-$(CONFIG_QE) += qe_io.o
|
|
COBJS-$(CONFIG_CPM2) += serial_scc.o
|
|
COBJS-$(CONFIG_SYS_FSL_QORIQ_CHASSIS1) += fsl_corenet_serdes.o
|
|
COBJS-$(CONFIG_SYS_FSL_QORIQ_CHASSIS2) += fsl_corenet2_serdes.o
|
|
|
|
# SoC specific SERDES support
|
|
COBJS-$(CONFIG_MPC8536) += mpc8536_serdes.o
|
|
COBJS-$(CONFIG_MPC8544) += mpc8544_serdes.o
|
|
COBJS-$(CONFIG_MPC8548) += mpc8548_serdes.o
|
|
COBJS-$(CONFIG_MPC8568) += mpc8568_serdes.o
|
|
COBJS-$(CONFIG_MPC8569) += mpc8569_serdes.o
|
|
COBJS-$(CONFIG_MPC8572) += mpc8572_serdes.o
|
|
COBJS-$(CONFIG_P1010) += p1010_serdes.o
|
|
COBJS-$(CONFIG_P1011) += p1021_serdes.o
|
|
COBJS-$(CONFIG_P1012) += p1021_serdes.o
|
|
COBJS-$(CONFIG_P1013) += p1022_serdes.o
|
|
COBJS-$(CONFIG_P1014) += p1010_serdes.o
|
|
COBJS-$(CONFIG_P1017) += p1023_serdes.o
|
|
COBJS-$(CONFIG_P1020) += p1021_serdes.o
|
|
COBJS-$(CONFIG_P1021) += p1021_serdes.o
|
|
COBJS-$(CONFIG_P1022) += p1022_serdes.o
|
|
COBJS-$(CONFIG_P1023) += p1023_serdes.o
|
|
COBJS-$(CONFIG_P1024) += p1021_serdes.o
|
|
COBJS-$(CONFIG_P1025) += p1021_serdes.o
|
|
COBJS-$(CONFIG_P2010) += p2020_serdes.o
|
|
COBJS-$(CONFIG_P2020) += p2020_serdes.o
|
|
COBJS-$(CONFIG_PPC_P2041) += p2041_serdes.o
|
|
COBJS-$(CONFIG_PPC_P3041) += p3041_serdes.o
|
|
COBJS-$(CONFIG_PPC_P4080) += p4080_serdes.o
|
|
COBJS-$(CONFIG_PPC_P5020) += p5020_serdes.o
|
|
COBJS-$(CONFIG_PPC_P5040) += p5040_serdes.o
|
|
COBJS-$(CONFIG_PPC_T4240) += t4240_serdes.o
|
|
COBJS-$(CONFIG_PPC_B4420) += b4860_serdes.o
|
|
COBJS-$(CONFIG_PPC_B4860) += b4860_serdes.o
|
|
COBJS-$(CONFIG_BSC9132) += bsc9132_serdes.o
|
|
|
|
COBJS-y += cpu.o
|
|
COBJS-y += cpu_init.o
|
|
COBJS-y += cpu_init_early.o
|
|
COBJS-y += interrupts.o
|
|
COBJS-y += speed.o
|
|
COBJS-y += tlb.o
|
|
COBJS-y += traps.o
|
|
|
|
# Stub implementations of cache management functions for USB
|
|
COBJS-y += cache.o
|
|
|
|
endif # not minimal
|
|
|
|
COBJS = $(COBJS-y)
|
|
|
|
SRCS := $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c)
|
|
OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS))
|
|
START := $(addprefix $(obj),$(START))
|
|
|
|
all: $(obj).depend $(START) $(LIB)
|
|
|
|
$(LIB): $(OBJS)
|
|
$(call cmd_link_o_target, $(OBJS))
|
|
|
|
#########################################################################
|
|
|
|
# defines $(obj).depend target
|
|
include $(SRCTREE)/rules.mk
|
|
|
|
sinclude $(obj).depend
|
|
|
|
#########################################################################
|