ARM:AM33XX: Added timer support
This patch adds timer support for AM33xx platform. Signed-off-by: Chandan Nath <chandan.nath@ti.com> Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
This commit is contained in:
parent
62d7fe7c91
commit
f0f4b5ff50
3
Makefile
3
Makefile
|
@ -289,6 +289,9 @@ LIBS += lib/libfdt/libfdt.o
|
||||||
LIBS += api/libapi.o
|
LIBS += api/libapi.o
|
||||||
LIBS += post/libpost.o
|
LIBS += post/libpost.o
|
||||||
|
|
||||||
|
ifeq ($(SOC),am33xx)
|
||||||
|
LIBS += $(CPUDIR)/omap-common/libomap-common.o
|
||||||
|
endif
|
||||||
ifeq ($(SOC),omap3)
|
ifeq ($(SOC),omap3)
|
||||||
LIBS += $(CPUDIR)/omap-common/libomap-common.o
|
LIBS += $(CPUDIR)/omap-common/libomap-common.o
|
||||||
endif
|
endif
|
||||||
|
|
|
@ -29,7 +29,9 @@ SOBJS := reset.o
|
||||||
|
|
||||||
COBJS := timer.o
|
COBJS := timer.o
|
||||||
COBJS += utils.o
|
COBJS += utils.o
|
||||||
|
ifdef CONFIG_OMAP
|
||||||
COBJS += gpio.o
|
COBJS += gpio.o
|
||||||
|
endif
|
||||||
|
|
||||||
ifdef CONFIG_SPL_BUILD
|
ifdef CONFIG_SPL_BUILD
|
||||||
COBJS += spl.o
|
COBJS += spl.o
|
||||||
|
|
Loading…
Reference in New Issue