mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 17:07:38 +00:00
8ae83cc5af
T2080RDB supports booting from 2 nor banks(default and altbank). The corresponding defconfig can only have one entry defined and therefore, extend cs4340_get_fw_addr() function to overwrite firmware address which will be later used in cortina firmware. Signed-off-by: Kuldeep Singh <kuldeep.singh@nxp.com> Reviewed-by: Priyanka Jain <priyanka.jain@nxp.com>
18 lines
450 B
C
18 lines
450 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright 2014 Freescale Semiconductor, Inc.
|
|
* Copyright 2021 NXP
|
|
*/
|
|
|
|
#ifndef __CORENET_DS_H__
|
|
#define __CORENET_DS_H__
|
|
|
|
#define CORTINA_FW_ADDR_IFCNOR 0xefe00000
|
|
#define CORTINA_FW_ADDR_IFCNOR_ALTBANK 0xebe00000
|
|
|
|
void fdt_fixup_board_enet(void *blob);
|
|
void pci_of_setup(void *blob, struct bd_info *bd);
|
|
void fdt_fixup_board_fman_ethernet(void *blob);
|
|
void fdt_fixup_board_phy(void *blob);
|
|
|
|
#endif
|