mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
cc2244b8fa
some rockchip soc will not include lib/timer.c in SPL stage, so implement timer driver for some soc can use us delay function in SPL. Signed-off-by: Lin Huang <hl@rock-chips.com> Acked-by: Simon Glass <sjg@chromium.org>
14 lines
227 B
Makefile
14 lines
227 B
Makefile
#
|
|
# Copyright (c) 2014 Google, Inc
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
ifdef CONFIG_SPL_BUILD
|
|
obj-y += board-spl.o
|
|
else
|
|
obj-y += board.o
|
|
endif
|
|
obj-y += common.o
|
|
obj-y += rk_timer.o
|
|
obj-$(CONFIG_ROCKCHIP_RK3288) += rk3288/
|