2009-12-31 22:30:26 +00:00
|
|
|
############################################################################
|
2013-06-02 13:57:22 -06:00
|
|
|
# arch/arm/src/sam34/Make.defs
|
2009-12-31 22:30:26 +00:00
|
|
|
#
|
2015-02-03 07:00:54 -06:00
|
|
|
# Copyright (C) 2009-2011, 2013-2015 Gregory Nutt. All rights reserved.
|
2011-10-03 14:06:06 +00:00
|
|
|
# Author: Gregory Nutt <gnutt@nuttx.org>
|
2009-12-31 22:30:26 +00:00
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions
|
|
|
|
# are met:
|
|
|
|
#
|
|
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer in
|
|
|
|
# the documentation and/or other materials provided with the
|
|
|
|
# distribution.
|
|
|
|
# 3. Neither the name NuttX nor the names of its contributors may be
|
|
|
|
# used to endorse or promote products derived from this software
|
|
|
|
# without specific prior written permission.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
# OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
# POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
2010-04-02 16:23:10 +00:00
|
|
|
# The start-up, "head", file
|
|
|
|
|
2015-03-06 08:26:43 -06:00
|
|
|
ifeq ($(CONFIG_ARMV7M_CMNVECTOR),y)
|
|
|
|
HEAD_ASRC =
|
|
|
|
else
|
2013-06-02 13:04:40 -06:00
|
|
|
HEAD_ASRC = sam_vectors.S
|
2015-03-06 08:26:43 -06:00
|
|
|
endif
|
2009-12-31 22:30:26 +00:00
|
|
|
|
2010-04-02 16:23:10 +00:00
|
|
|
# Common ARM and Cortex-M3 files
|
|
|
|
|
2013-03-23 14:46:02 +00:00
|
|
|
CMN_UASRCS =
|
|
|
|
CMN_UCSRCS =
|
|
|
|
|
2013-03-14 22:44:06 +00:00
|
|
|
CMN_ASRCS = up_saveusercontext.S up_fullcontextrestore.S up_switchcontext.S
|
2018-02-04 12:22:03 -06:00
|
|
|
CMN_ASRCS += up_testset.S up_fetchadd.S vfork.S
|
2016-02-09 13:44:22 -06:00
|
|
|
|
2013-07-23 17:52:06 -06:00
|
|
|
CMN_CSRCS = up_assert.c up_blocktask.c up_copyfullstate.c up_createstack.c
|
2016-12-04 07:23:31 -06:00
|
|
|
CMN_CSRCS += up_mdelay.c up_udelay.c up_exit.c up_initialize.c
|
2013-03-14 22:44:06 +00:00
|
|
|
CMN_CSRCS += up_initialstate.c up_interruptcontext.c up_memfault.c up_modifyreg8.c
|
|
|
|
CMN_CSRCS += up_modifyreg16.c up_modifyreg32.c up_releasepending.c
|
|
|
|
CMN_CSRCS += up_releasestack.c up_reprioritizertr.c up_schedulesigaction.c
|
2014-09-01 15:39:34 -06:00
|
|
|
CMN_CSRCS += up_sigdeliver.c up_stackframe.c up_unblocktask.c up_usestack.c
|
|
|
|
CMN_CSRCS += up_doirq.c up_hardfault.c up_svcall.c up_vfork.c
|
2009-12-31 22:30:26 +00:00
|
|
|
|
2016-12-04 07:23:31 -06:00
|
|
|
ifneq ($(CONFIG_SMP),y)
|
|
|
|
CMN_CSRCS += up_idle.c
|
|
|
|
endif
|
|
|
|
|
2011-04-08 18:36:51 +00:00
|
|
|
# Configuration-dependent common files
|
|
|
|
|
2015-03-06 08:26:43 -06:00
|
|
|
ifeq ($(CONFIG_ARMV7M_CMNVECTOR),y)
|
2015-03-11 12:30:14 -06:00
|
|
|
ifeq ($(CONFIG_ARMV7M_LAZYFPU),y)
|
2015-03-06 08:26:43 -06:00
|
|
|
CMN_ASRCS += up_lazyexception.S
|
|
|
|
else
|
|
|
|
CMN_ASRCS += up_exception.S
|
|
|
|
endif
|
|
|
|
CMN_CSRCS += up_vectors.c
|
|
|
|
endif
|
|
|
|
|
2013-03-18 21:10:08 +00:00
|
|
|
ifeq ($(CONFIG_ARCH_RAMVECTORS),y)
|
|
|
|
CMN_CSRCS += up_ramvec_initialize.c up_ramvec_attach.c
|
|
|
|
endif
|
|
|
|
|
2014-08-29 14:47:22 -06:00
|
|
|
ifeq ($(CONFIG_BUILD_PROTECTED),y)
|
2014-09-01 15:39:34 -06:00
|
|
|
CMN_CSRCS += up_mpu.c up_task_start.c up_pthread_start.c
|
2013-03-17 00:40:49 +00:00
|
|
|
ifneq ($(CONFIG_DISABLE_SIGNALS),y)
|
2013-03-23 14:46:02 +00:00
|
|
|
CMN_CSRCS += up_signal_dispatch.c
|
|
|
|
CMN_UASRCS += up_signal_handler.S
|
2013-03-17 00:40:49 +00:00
|
|
|
endif
|
2011-04-08 18:36:51 +00:00
|
|
|
endif
|
|
|
|
|
2015-03-06 08:26:43 -06:00
|
|
|
ifeq ($(CONFIG_ARCH_FPU),y)
|
|
|
|
CMN_ASRCS += up_fpu.S
|
|
|
|
ifneq ($(CONFIG_ARMV7M_CMNVECTOR),y)
|
|
|
|
CMN_CSRCS += up_copyarmstate.c
|
2015-08-31 08:40:02 -06:00
|
|
|
else ifeq ($(CONFIG_ARMV7M_LAZYFPU),y)
|
|
|
|
CMN_CSRCS += up_copyarmstate.c
|
2015-03-06 08:26:43 -06:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2015-01-24 06:03:39 -06:00
|
|
|
ifeq ($(CONFIG_STACK_COLORATION),y)
|
|
|
|
CMN_CSRCS += up_checkstack.c
|
|
|
|
endif
|
|
|
|
|
2013-06-02 10:33:57 -06:00
|
|
|
# Required SAM3/4 files
|
2010-04-02 16:23:10 +00:00
|
|
|
|
2013-06-02 10:33:57 -06:00
|
|
|
CHIP_ASRCS =
|
2015-07-03 09:33:52 -06:00
|
|
|
CHIP_CSRCS = sam_allocateheap.c sam_irq.c sam_lowputc.c sam_serial.c
|
|
|
|
CHIP_CSRCS += sam_start.c
|
2010-04-02 16:23:10 +00:00
|
|
|
|
2013-06-02 10:33:57 -06:00
|
|
|
# Configuration-dependent SAM3/4 files
|
2010-04-02 16:23:10 +00:00
|
|
|
|
2015-03-06 08:26:43 -06:00
|
|
|
ifeq ($(CONFIG_ARMV7M_CMNVECTOR),y)
|
|
|
|
CHIP_ASRCS += sam_vectors.S
|
|
|
|
endif
|
|
|
|
|
2014-08-06 16:26:01 -06:00
|
|
|
ifneq ($(CONFIG_SCHED_TICKLESS),y)
|
|
|
|
CHIP_CSRCS += sam_timerisr.c
|
|
|
|
endif
|
|
|
|
|
2014-07-07 08:03:18 -06:00
|
|
|
ifeq ($(CONFIG_CRYPTO_AES),y)
|
|
|
|
CHIP_CSRCS += sam_aes.c
|
|
|
|
endif
|
|
|
|
|
2014-06-25 08:25:52 -06:00
|
|
|
ifeq ($(CONFIG_ARCH_CHIP_SAM4CM),y)
|
|
|
|
CHIP_CSRCS += sam4cm_supc.c
|
|
|
|
endif
|
|
|
|
|
2013-06-04 15:12:56 -06:00
|
|
|
ifeq ($(CONFIG_ARCH_CHIP_SAM4L),y)
|
2013-06-05 18:48:30 -06:00
|
|
|
CHIP_CSRCS += sam4l_clockconfig.c sam4l_periphclks.c sam4l_gpio.c
|
2013-06-04 15:12:56 -06:00
|
|
|
else
|
2015-07-03 09:33:52 -06:00
|
|
|
CHIP_CSRCS += sam_clockconfig.c sam_gpio.c sam_gpioirq.c
|
2013-06-04 15:12:56 -06:00
|
|
|
endif
|
|
|
|
|
2014-08-29 14:47:22 -06:00
|
|
|
ifeq ($(CONFIG_BUILD_PROTECTED),y)
|
2013-06-02 13:04:40 -06:00
|
|
|
CHIP_CSRCS += sam_userspace.c sam_mpuinit.c
|
2011-04-08 15:24:50 +00:00
|
|
|
endif
|
|
|
|
|
2014-03-12 12:38:39 -06:00
|
|
|
ifeq ($(CONFIG_SAM34_CMCC),y)
|
|
|
|
CHIP_CSRCS += sam_cmcc.c
|
|
|
|
endif
|
|
|
|
|
2014-03-13 15:54:09 -06:00
|
|
|
ifeq ($(CONFIG_SAM34_DMAC0),y)
|
2014-02-25 10:56:23 -06:00
|
|
|
CHIP_CSRCS += sam_dmac.c
|
2013-06-19 18:38:31 -06:00
|
|
|
endif
|
|
|
|
|
2014-04-21 17:04:22 -06:00
|
|
|
ifeq ($(CONFIG_ARCH_CHIP_SAM4L),y)
|
2013-06-19 18:38:31 -06:00
|
|
|
ifeq ($(CONFIG_SAM34_PDCA),y)
|
|
|
|
CHIP_CSRCS += sam4l_pdca.c
|
2010-04-02 16:23:10 +00:00
|
|
|
endif
|
2014-04-21 17:04:22 -06:00
|
|
|
endif
|
2009-12-31 22:30:26 +00:00
|
|
|
|
2014-03-12 15:03:59 -06:00
|
|
|
ifeq ($(CONFIG_SAM34_EMAC),y)
|
|
|
|
CHIP_CSRCS += sam_emac.c
|
|
|
|
endif
|
|
|
|
|
2014-03-16 14:11:22 -06:00
|
|
|
ifeq ($(CONFIG_SAM34_UDP),y)
|
|
|
|
CHIP_CSRCS += sam_udp.c
|
|
|
|
endif
|
|
|
|
|
2013-06-02 10:33:57 -06:00
|
|
|
ifeq ($(CONFIG_SAM34_HSMCI),y)
|
2013-06-02 13:04:40 -06:00
|
|
|
CHIP_CSRCS += sam_hsmci.c
|
2010-04-02 16:23:10 +00:00
|
|
|
endif
|
2011-04-08 15:24:50 +00:00
|
|
|
|
2013-06-26 18:46:44 -06:00
|
|
|
ifeq ($(CONFIG_SAM34_SPI0),y)
|
2013-06-02 13:04:40 -06:00
|
|
|
CHIP_CSRCS += sam_spi.c
|
2014-03-13 10:34:35 -06:00
|
|
|
else
|
|
|
|
ifeq ($(CONFIG_SAM34_SPI1),y)
|
|
|
|
CHIP_CSRCS += sam_spi.c
|
|
|
|
endif
|
2011-10-03 14:06:06 +00:00
|
|
|
endif
|
2014-04-21 17:04:22 -06:00
|
|
|
|
2015-06-22 09:32:15 -06:00
|
|
|
ifeq ($(CONFIG_SAM34_TWIM),y)
|
|
|
|
CHIP_CSRCS += sam_twi.c
|
|
|
|
endif
|
|
|
|
|
2014-07-03 07:26:44 -06:00
|
|
|
ifeq ($(CONFIG_SAM34_AES),y)
|
|
|
|
CHIP_CSRCS += sam_aes.c
|
|
|
|
endif
|
|
|
|
|
2014-04-21 17:04:22 -06:00
|
|
|
ifeq ($(CONFIG_SAM34_RTC),y)
|
|
|
|
CHIP_CSRCS += sam_rtc.c
|
|
|
|
endif
|
2014-04-21 19:10:06 -06:00
|
|
|
|
2014-05-05 14:35:37 -06:00
|
|
|
ifeq ($(CONFIG_SAM34_RTT),y)
|
|
|
|
CHIP_CSRCS += sam_rtt.c
|
|
|
|
endif
|
|
|
|
|
2014-04-21 19:10:06 -06:00
|
|
|
ifeq ($(CONFIG_SAM34_WDT),y)
|
|
|
|
CHIP_CSRCS += sam_wdt.c
|
|
|
|
endif
|
2014-04-22 09:01:20 -06:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_TIMER),y)
|
|
|
|
CHIP_CSRCS += sam_tc.c
|
|
|
|
endif
|
2015-02-03 07:00:54 -06:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_ARCH_CHIP_SAM4CM),y)
|
|
|
|
ifeq ($(CONFIG_SAM34_TC),y)
|
|
|
|
CHIP_CSRCS += sam4cm_tc.c
|
2016-12-04 07:23:31 -06:00
|
|
|
|
2015-02-03 07:00:54 -06:00
|
|
|
ifeq ($(CONFIG_SAM34_ONESHOT),y)
|
2016-08-11 17:04:19 -06:00
|
|
|
CHIP_CSRCS += sam4cm_oneshot.c sam4cm_oneshot_lowerhalf.c
|
2016-12-04 07:23:31 -06:00
|
|
|
endif # CONFIG_SAM34_ONESHOT
|
|
|
|
|
2015-02-03 07:00:54 -06:00
|
|
|
ifeq ($(CONFIG_SAM34_FREERUN),y)
|
|
|
|
CHIP_CSRCS += sam4cm_freerun.c
|
2016-12-04 07:23:31 -06:00
|
|
|
endif # CONFIG_SAM34_FREERUN
|
|
|
|
|
2015-02-03 07:00:54 -06:00
|
|
|
ifeq ($(CONFIG_SCHED_TICKLESS),y)
|
|
|
|
CHIP_CSRCS += sam4cm_tickless.c
|
2016-12-04 07:23:31 -06:00
|
|
|
endif # CONFIG_SCHED_TICKLESS
|
|
|
|
endif # CONFIG_SAM34_TC
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_SMP),y)
|
|
|
|
CHIP_CSRCS += sam4cm_cpuindex.c sam4cm_cpuidlestack.c
|
|
|
|
CHIP_CSRCS += sam4cm_cpupause.c sam4cm_cpustart.c sam4cm_idle.c
|
|
|
|
endif # CONFIG_SMP
|
|
|
|
endif # CONFIG_ARCH_CHIP_SAM4CM
|