mirror of
				https://source.denx.de/u-boot/u-boot.git
				synced 2025-11-03 18:01:41 +01:00 
			
		
		
		
	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>
		
			
				
	
	
		
			38 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			1.0 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_ */
 |