2015-02-14 00:30:06 +08:00
|
|
|
############################################################################
|
|
|
|
# drivers/timers/Make.defs
|
|
|
|
#
|
2024-11-05 20:02:24 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
#
|
2021-03-04 14:10:42 +08:00
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
# contributor license agreements. See the NOTICE file distributed with
|
|
|
|
# this work for additional information regarding copyright ownership. The
|
|
|
|
# ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
# "License"); you may not use this file except in compliance with the
|
|
|
|
# License. You may obtain a copy of the License at
|
2015-02-14 00:30:06 +08:00
|
|
|
#
|
2021-03-04 14:10:42 +08:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2015-02-14 00:30:06 +08:00
|
|
|
#
|
2021-03-04 14:10:42 +08:00
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
# License for the specific language governing permissions and limitations
|
|
|
|
# under the License.
|
2015-02-14 00:30:06 +08:00
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
|
|
|
# Include timer drivers
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_WATCHDOG),y)
|
|
|
|
CSRCS += watchdog.c
|
|
|
|
TMRDEPPATH = --dep-path timers
|
|
|
|
TMRVPATH = :timers
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_TIMER),y)
|
|
|
|
CSRCS += timer.c
|
|
|
|
TMRDEPPATH = --dep-path timers
|
|
|
|
TMRVPATH = :timers
|
|
|
|
endif
|
|
|
|
|
2018-08-28 01:55:30 +08:00
|
|
|
ifeq ($(CONFIG_TIMER_ARCH),y)
|
|
|
|
CSRCS += arch_timer.c
|
|
|
|
TMRDEPPATH = --dep-path timers
|
|
|
|
TMRVPATH = :timers
|
|
|
|
endif
|
|
|
|
|
2016-08-13 00:40:07 +08:00
|
|
|
ifeq ($(CONFIG_ONESHOT),y)
|
|
|
|
CSRCS += oneshot.c
|
|
|
|
TMRDEPPATH = --dep-path timers
|
|
|
|
TMRVPATH = :timers
|
|
|
|
endif
|
|
|
|
|
2018-08-28 01:55:30 +08:00
|
|
|
ifeq ($(CONFIG_ALARM_ARCH),y)
|
|
|
|
CSRCS += arch_alarm.c
|
|
|
|
TMRDEPPATH = --dep-path timers
|
|
|
|
TMRVPATH = :timers
|
|
|
|
endif
|
|
|
|
|
2015-11-20 04:54:30 +08:00
|
|
|
ifeq ($(CONFIG_RTC_DSXXXX),y)
|
2015-11-18 04:07:55 +08:00
|
|
|
CSRCS += ds3231.c
|
|
|
|
TMRDEPPATH = --dep-path timers
|
|
|
|
TMRVPATH = :timers
|
|
|
|
endif
|
|
|
|
|
2015-11-21 07:36:10 +08:00
|
|
|
ifeq ($(CONFIG_RTC_PCF85263),y)
|
|
|
|
CSRCS += pcf85263.c
|
|
|
|
TMRDEPPATH = --dep-path timers
|
2023-06-27 20:55:06 +08:00
|
|
|
TMRVPATH = :timers
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_RTC_PL031),y)
|
|
|
|
CSRCS += pl031.c
|
|
|
|
TMRDEPPATH = --dep-path timers
|
2015-11-21 07:36:10 +08:00
|
|
|
TMRVPATH = :timers
|
|
|
|
endif
|
|
|
|
|
2019-01-09 03:04:50 +08:00
|
|
|
ifeq ($(CONFIG_RTC_MCP794XX),y)
|
|
|
|
CSRCS += mcp794xx.c
|
2019-01-07 07:32:02 +08:00
|
|
|
TMRDEPPATH = --dep-path timers
|
|
|
|
TMRVPATH = :timers
|
|
|
|
endif
|
|
|
|
|
2022-02-24 14:43:33 +08:00
|
|
|
ifeq ($(CONFIG_RTC_RX8010SJ),y)
|
|
|
|
CSRCS += rx8010.c
|
|
|
|
TMRDEPPATH = --dep-path timers
|
|
|
|
TMRVPATH = :timers
|
|
|
|
endif
|
|
|
|
|
2019-11-03 01:30:33 +08:00
|
|
|
ifeq ($(CONFIG_RTC_RPMSG),y)
|
|
|
|
CSRCS += rpmsg_rtc.c
|
|
|
|
TMRDEPPATH = --dep-path timers
|
|
|
|
TMRVPATH = :timers
|
|
|
|
endif
|
|
|
|
|
2018-08-28 01:55:30 +08:00
|
|
|
ifeq ($(CONFIG_RTC_ARCH),y)
|
|
|
|
CSRCS += arch_rtc.c
|
|
|
|
TMRDEPPATH = --dep-path timers
|
|
|
|
TMRVPATH = :timers
|
|
|
|
endif
|
|
|
|
|
2015-02-14 00:30:06 +08:00
|
|
|
ifeq ($(CONFIG_RTC_DRIVER),y)
|
|
|
|
CSRCS += rtc.c
|
|
|
|
TMRDEPPATH = --dep-path timers
|
|
|
|
TMRVPATH = :timers
|
|
|
|
endif
|
|
|
|
|
2015-04-03 03:00:10 +08:00
|
|
|
ifeq ($(CONFIG_TIMERS_CS2100CP),y)
|
|
|
|
CSRCS += cs2100-cp.c
|
|
|
|
TMRDEPPATH = --dep-path timers
|
|
|
|
TMRVPATH = :timers
|
|
|
|
endif
|
|
|
|
|
2019-09-02 21:53:52 +08:00
|
|
|
ifeq ($(CONFIG_PWM),y)
|
|
|
|
CSRCS += pwm.c
|
|
|
|
TMRDEPPATH = --dep-path timers
|
|
|
|
TMRVPATH = :timers
|
|
|
|
endif
|
|
|
|
|
2022-06-26 20:00:38 +08:00
|
|
|
ifeq ($(CONFIG_CAPTURE),y)
|
|
|
|
CSRCS += capture.c
|
|
|
|
TMRDEPPATH = --dep-path timers
|
|
|
|
TMRVPATH = :timers
|
|
|
|
endif
|
|
|
|
|
2024-01-16 18:35:30 +08:00
|
|
|
ifeq ($(CONFIG_GOLDFISH_TIMER),y)
|
|
|
|
CSRCS += goldfish_timer.c
|
|
|
|
TMRDEPPATH = --dep-path timers
|
|
|
|
TMRVPATH = :timers
|
|
|
|
endif
|
|
|
|
|
2015-02-14 00:30:06 +08:00
|
|
|
# Include timer build support (if any were selected)
|
|
|
|
|
|
|
|
DEPPATH += $(TMRDEPPATH)
|
|
|
|
VPATH += $(TMRVPATH)
|