mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 13:14:27 +00:00
cef443c166
The support for DaVinci DM* SoCs has been dropped a while ago. There's still a lot of leftover code in mach-davinci though. Entirely remove certain files and modify the common code to no longer reference unsupported chips. Note: all DaVinci platforms supported in u-boot now define SOC_DA8XX but not all define SOC_DA850 (e.g. omapl138). We can safely remove all ifdefs for the former, but let's leave the ones for the latter. Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
37 lines
1 KiB
C
37 lines
1 KiB
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (C) 2007 Sergey Kubushyn <ksi@koi8.net>
|
|
*
|
|
* Based on:
|
|
*
|
|
* ----------------------------------------------------------------------------
|
|
*
|
|
* dm644x_emac.h
|
|
*
|
|
* TI DaVinci (DM644X) EMAC peripheral driver header for DV-EVM
|
|
*
|
|
* Copyright (C) 2005 Texas Instruments.
|
|
*
|
|
* ----------------------------------------------------------------------------
|
|
*
|
|
* Modifications:
|
|
* ver. 1.0: Sep 2005, TI PSP Team - Created EMAC version for uBoot.
|
|
*/
|
|
|
|
#ifndef _DM644X_EMAC_H_
|
|
#define _DM644X_EMAC_H_
|
|
|
|
#include <asm/arch/hardware.h>
|
|
|
|
#define EMAC_BASE_ADDR DAVINCI_EMAC_CNTRL_REGS_BASE
|
|
#define EMAC_WRAPPER_BASE_ADDR DAVINCI_EMAC_WRAPPER_CNTRL_REGS_BASE
|
|
#define EMAC_WRAPPER_RAM_ADDR DAVINCI_EMAC_WRAPPER_RAM_BASE
|
|
#define EMAC_MDIO_BASE_ADDR DAVINCI_MDIO_CNTRL_REGS_BASE
|
|
#define DAVINCI_EMAC_VERSION2
|
|
|
|
/* MDIO module input frequency */
|
|
#define EMAC_MDIO_BUS_FREQ clk_get(DAVINCI_MDIO_CLKID)
|
|
/* MDIO clock output frequency */
|
|
#define EMAC_MDIO_CLOCK_FREQ 2000000 /* 2.0 MHz */
|
|
|
|
#endif /* _DM644X_EMAC_H_ */
|