mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
0cc11dea89
Switch to an SPL image. The SPL for Ventana does the following: - setup i2c and read the factory programmed EEPROM to obtain DRAM config and model for board-specific calibration data - configure DRAM per CPU/size/layout/devices/calibration - load u-boot.img from NAND and jump to it This allows for a single SPL+u-boot.img to replace the previous multiple boa configurations. Cc: Stefan Roese <sr@denx.de> Cc: Otavio Salvador <otavio@ossystems.com.br> Cc: Andy Ng <andreas2025@gmail.com> Cc: Eric Nelson <eric.nelson@boundarydevices.com> Cc: Tapani Utriainen <tapani@technexion.com> Cc: Tom Rini <trini@ti.com> Signed-off-by: Tim Harvey <tharvey@gateworks.com>
11 lines
289 B
Makefile
11 lines
289 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
|
|
obj-$(CONFIG_SPL_BUILD) += gw_ventana_spl.o
|
|
|