mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 12:45:42 +00:00
e56c5791af
Move shared functions used by both SPL and U-Boot to common.c: - setup_iomux_uart() and uart pad config - gpio pad config In the process also moved the following to common.c in preparation for calling it from the SPL: - split i2c setup into a shared function - move pmic init to setup_pmic() function to call directly from power_init_board() - split gpio setup into early (iomux and default pin config) and late (output configuration based on env) Signed-off-by: Tim Harvey <tharvey@gateworks.com>
11 lines
298 B
Makefile
11 lines
298 B
Makefile
#
|
|
# Copyright (C) 2012-2013, Guennadi Liakhovetski <lg@denx.de>
|
|
# (C) Copyright 2012-2013 Freescale Semiconductor, Inc.
|
|
# Copyright (C) 2013, Gateworks Corporation
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-y := gw_ventana.o gsc.o eeprom.o common.o
|
|
obj-$(CONFIG_SPL_BUILD) += gw_ventana_spl.o
|
|
|