common: Move old EEPROM functions into a new header
authorSimon Glass <sjg@chromium.org>
Thu, 14 Nov 2019 19:57:50 +0000 (12:57 -0700)
committerTom Rini <trini@konsulko.com>
Mon, 2 Dec 2019 23:25:25 +0000 (18:25 -0500)
These functions do not use driver model but are still used. Move them to a
new eeprom.h header file.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
19 files changed:
board/atmel/common/mac_eeprom.c
board/compulab/common/eeprom.c
board/corscience/tricorder/tricorder-eeprom.c
board/dhelectronics/dh_imx6/dh_imx6.c
board/freescale/mpc8323erdb/mpc8323erdb.c
board/kosagi/novena/novena.c
board/phytec/phycore_rk3288/phycore-rk3288.c
board/rockchip/tinker_rk3288/tinker-rk3288.c
board/softing/vining_fpga/socfpga.c
board/ti/am43xx/board.c
board/ti/common/board_detect.c
board/ti/ks2_evm/board_k2g.c
cmd/eeprom.c
drivers/misc/i2c_eeprom.c
drivers/mtd/mw_eeprom.c
drivers/rtc/rv3029.c
env/eeprom.c
include/common.h
include/eeprom.h [new file with mode: 0644]

index 83a7778e99546876dc2b8976bd1939829967c71c..050aa51ee1f1308cd8c0f994edf569c50c4d800e 100644 (file)
@@ -6,6 +6,7 @@
 
 #include <common.h>
 #include <dm.h>
+#include <eeprom.h>
 #include <env.h>
 #include <i2c_eeprom.h>
 #include <netdev.h>
index 81f69d385026f5a777dae4e8130b80bbc325c0f8..5206cf5c0ad76a0a1b7389e049aa567bc0e4dc27 100644 (file)
@@ -7,6 +7,7 @@
  */
 
 #include <common.h>
+#include <eeprom.h>
 #include <i2c.h>
 #include <eeprom_layout.h>
 #include <eeprom_field.h>
index b28189dafdcc5f91aa9cbdcd533482555dc0e59f..23c2ea91862bc638ee5bf0e863e9b00d5db5779c 100644 (file)
@@ -5,6 +5,7 @@
  * Andreas Bießmann <andreas.biessmann@corscience.de>
  */
 #include <common.h>
+#include <eeprom.h>
 #include <i2c.h>
 #include <u-boot/crc.h>
 
index 037be01f8bb5f00566663855f3a1beb5fb85aa3b..33ce7e8ff115e2964c26e7955c3e2600e73d0bca 100644 (file)
@@ -7,6 +7,7 @@
 
 #include <common.h>
 #include <dm.h>
+#include <eeprom.h>
 #include <init.h>
 #include <dm/device-internal.h>
 #include <asm/arch/clock.h>
index cbec8a44e4dd26ce7a2ce62e0666b614a256b1c1..6c47cb2b3835314f4eeecbc6470e6daedee65184 100644 (file)
@@ -10,6 +10,7 @@
  */
 
 #include <common.h>
+#include <eeprom.h>
 #include <env.h>
 #include <init.h>
 #include <ioports.h>
index e4f0e81004e8fb4297e8e368e6e2417b432eb0ca..7eb833cf02c16a56772de651af4a6487c926cb7a 100644 (file)
@@ -7,6 +7,7 @@
 
 #include <common.h>
 #include <dm.h>
+#include <eeprom.h>
 #include <init.h>
 #include <dm/device-internal.h>
 #include <ahci.h>
index dac59cd55dfb99753fdf3b67cae552c9ab251b5f..039ed0f1bcc54333910f50e9e2c6e112242d3a34 100644 (file)
@@ -4,6 +4,7 @@
  * Author: Wadim Egorov <w.egorov@phytec.de>
  */
 
+#include <eeprom.h>
 #include <init.h>
 #include <asm/io.h>
 #include <common.h>
index 85a7059a033b9b193ad998b699274b152949ec36..7af39e10cd5b3b6d1b79c4e8933877f4fac8f5ff 100644 (file)
@@ -5,6 +5,7 @@
 
 #include <common.h>
 #include <dm.h>
+#include <eeprom.h>
 #include <env.h>
 #include <i2c_eeprom.h>
 #include <init.h>
index d70c22f48fe549fac3a6c129155aa4f422bd3276..5a88b6c8adef8b0e37ee2670d99a1d46fdd3337d 100644 (file)
@@ -4,6 +4,7 @@
  */
 
 #include <common.h>
+#include <eeprom.h>
 #include <env.h>
 #include <init.h>
 #include <status_led.h>
index 93538309695dd4deb0a5d3696df5a3af7bb294ef..d12f1ebfdf9534e1852fe4ed9cabfa8d848b7289 100644 (file)
@@ -8,6 +8,7 @@
  */
 
 #include <common.h>
+#include <eeprom.h>
 #include <env.h>
 #include <i2c.h>
 #include <init.h>
index bc89cc57bd7818e77656d4e97226895cbdd478d8..564d2f70460c95dcfb6bdf0c693b7bd603707d62 100644 (file)
@@ -8,6 +8,7 @@
  */
 
 #include <common.h>
+#include <eeprom.h>
 #include <asm/arch/hardware.h>
 #include <asm/omap_common.h>
 #include <dm/uclass.h>
index a0fd03a39fb2b49043478bc999ed142a238bcaf8..920d0d3420f141a3e011098d64beb7013d48dbaf 100644 (file)
@@ -6,6 +6,7 @@
  *     Texas Instruments Incorporated, <www.ti.com>
  */
 #include <common.h>
+#include <eeprom.h>
 #include <env.h>
 #include <init.h>
 #include <asm/arch/clock.h>
index 19953df082fbc7c2af425c893f5ded133bf94dcc..4a1569baf31e46108cc3a485d0033f1a718d0160 100644 (file)
@@ -22,6 +22,7 @@
 #include <common.h>
 #include <config.h>
 #include <command.h>
+#include <eeprom.h>
 #include <i2c.h>
 #include <eeprom_layout.h>
 
index 8f2349ad5a79dc17856d87559be799a7fb3b193c..3755dbf74bbe6eace7fbd34d5ab8b8ecb448a539 100644 (file)
@@ -4,6 +4,7 @@
  */
 
 #include <common.h>
+#include <eeprom.h>
 #include <linux/err.h>
 #include <linux/kernel.h>
 #include <dm.h>
index f7791b51a046d663082934dcd360bfdd160b09b8..6a3a6f67518b52b8432a599dcb02b2d35f03162b 100644 (file)
@@ -1,6 +1,7 @@
 /* Three-wire (MicroWire) serial eeprom driver (for 93C46 and compatibles) */
 
 #include <common.h>
+#include <eeprom.h>
 #include <asm/ic/ssi.h>
 
 /*
index 38acb9c9924d13015ab25ca23ea646cbcbc326ee..23670627770af714e96048eca8705b95ec5847a2 100644 (file)
@@ -10,6 +10,7 @@
 #include <common.h>
 #include <command.h>
 #include <dm.h>
+#include <eeprom.h>
 #include <i2c.h>
 #include <rtc.h>
 
index f0bdf2a14167f157b881b28e30971a6bfa6ac87a..e8126cfe3974695787e5cd11fe00fc9860d29406 100644 (file)
@@ -9,6 +9,7 @@
 
 #include <common.h>
 #include <command.h>
+#include <eeprom.h>
 #include <env.h>
 #include <env_internal.h>
 #include <linux/stddef.h>
index 64d0cf542e8387499cf4fe02651e3c02d2e9b807..8b37b58747474cad67d0ac19cfe0cc66bf27b4c0 100644 (file)
@@ -116,21 +116,6 @@ phys_size_t get_effective_memsize(void);
 void   reset_phy     (void);
 void   fdc_hw_init   (void);
 
-/* $(BOARD)/eeprom.c */
-#ifdef CONFIG_CMD_EEPROM
-void eeprom_init  (int bus);
-int  eeprom_read  (unsigned dev_addr, unsigned offset, uchar *buffer, unsigned cnt);
-int  eeprom_write (unsigned dev_addr, unsigned offset, uchar *buffer, unsigned cnt);
-#else
-/*
- * Some EEPROM code is depecated because it used the legacy I2C interface. Add
- * some macros here so we don't have to touch every one of those uses
- */
-#define eeprom_init(bus)
-#define eeprom_read(dev_addr, offset, buffer, cnt) ((void)-ENOSYS)
-#define eeprom_write(dev_addr, offset, buffer, cnt) ((void)-ENOSYS)
-#endif
-
 #if !defined(CONFIG_ENV_EEPROM_IS_ON_I2C) && defined(CONFIG_SYS_I2C_EEPROM_ADDR)
 # define CONFIG_SYS_DEF_EEPROM_ADDR CONFIG_SYS_I2C_EEPROM_ADDR
 #endif
diff --git a/include/eeprom.h b/include/eeprom.h
new file mode 100644 (file)
index 0000000..61eb826
--- /dev/null
@@ -0,0 +1,24 @@
+/* SPDX-License-Identifier: GPL-2.0+ */
+/*
+ * (C) Copyright 2000-2009
+ * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
+ */
+
+#ifndef __EEPROM_LEGACY_H
+#define __EEPROM_LEGACY_H
+
+#ifdef CONFIG_CMD_EEPROM
+void eeprom_init(int bus);
+int eeprom_read(uint dev_addr, uint offset, uchar *buffer, uint cnt);
+int eeprom_write(uint dev_addr, uint offset, uchar *buffer, uint cnt);
+#else
+/*
+ * Some EEPROM code is depecated because it used the legacy I2C interface. Add
+ * some macros here so we don't have to touch every one of those uses
+ */
+#define eeprom_init(bus)
+#define eeprom_read(dev_addr, offset, buffer, cnt) ((void)-ENOSYS)
+#define eeprom_write(dev_addr, offset, buffer, cnt) ((void)-ENOSYS)
+#endif
+
+#endif