]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
Remove unused symbols CONFIG_SYS_JFFS2_FIRST_BANK et al
authorTom Rini <trini@konsulko.com>
Sat, 29 Oct 2022 00:26:58 +0000 (20:26 -0400)
committerTom Rini <trini@konsulko.com>
Thu, 10 Nov 2022 14:45:54 +0000 (09:45 -0500)
This removes the following symbols:
   CONFIG_RTC_MCFRRTC
   CONFIG_SYS_JFFS2_FIRST_BANK
   CONFIG_SYS_JFFS2_FIRST_SECTOR
   CONFIG_SYS_JFFS2_NUM_BANKS
   CONFIG_SYS_LBC_CACHE_BASE
   CONFIG_SYS_LIME_SIZE
   CONFIG_SYS_MAMR
   CONFIG_SYS_MCFRRTC_BASE
   CONFIG_SYS_MONITOR_SEC

Signed-off-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
README
doc/README.JFFS2
include/configs/astro_mcf5373l.h
include/configs/at91sam9263ek.h
include/configs/socrates.h
include/configs/stmark2.h
include/configs/tuxx1.h

diff --git a/README b/README
index 737492893a0a6bce34f866b708f535dbea448e76..39243dfe355d9b7e43256e26f68b2d6356dfb84e 100644 (file)
--- a/README
+++ b/README
@@ -762,11 +762,6 @@ The following options need to be configured:
                entering dfuMANIFEST state. Host waits this timeout, before
                sending again an USB request to the device.
 
-- Journaling Flash filesystem support:
-               CONFIG_SYS_JFFS2_FIRST_SECTOR,
-               CONFIG_SYS_JFFS2_FIRST_BANK, CONFIG_SYS_JFFS2_NUM_BANKS
-               Define these for a default partition on a NOR device
-
 - Keyboard Support:
                See Kconfig help for available keyboard drivers.
 
@@ -1740,9 +1735,6 @@ Low Level (hardware related) configuration options:
 - CONFIG_SYS_OR_TIMING_SDRAM:
                SDRAM timing
 
-- CONFIG_SYS_MAMR_PTA:
-               periodic timer for refresh
-
 - CONFIG_SYS_SRIO:
                Chip has SRIO or not
 
index 0245da0488fb6ef65d6b665b332cf0e1f3ce81db..fddefb174690d00fa4fb5579bbdcd5210f630bd5 100644 (file)
@@ -21,16 +21,6 @@ Sorting is done while inserting into the fragment list, which is
 more or less a bubble sort. That algorithm is known to be O(n^2),
 thus you should really consider if you can avoid it!
 
-
-There only one way for JFFS2 to find the disk. It uses the flash_info
-structure to find the start of a JFFS2 disk (called partition in the code)
-and you can change where the partition is with two defines.
-
-CONFIG_SYS_JFFS2_FIRST_BANK
-       defined the first flash bank to use
-
-CONFIG_SYS_JFFS2_FIRST_SECTOR
-       defines the first sector to use
 ---
 
 TODO.
index adfadd7c6d7264f7bdcf5c4dbaf81cd01e616677..c79f9ca8f0f40a7da584a939e2de08b89cae12ce 100644 (file)
@@ -46,9 +46,6 @@
  */
 #ifdef CONFIG_RAM
 #define CONFIG_MONITOR_IS_IN_RAM
-#define ENABLE_JFFS    0
-#else
-#define ENABLE_JFFS    1
 #endif
 
 /* I2C */
        . = DEFINED(env_offset) ? env_offset : .; \
        env/embedded.o(.text*)
 
-#if ENABLE_JFFS
-/* JFFS Partition offset set */
-#define CONFIG_SYS_JFFS2_FIRST_BANK    0
-#define CONFIG_SYS_JFFS2_NUM_BANKS     1
-/* 512k reserved for u-boot */
-#define CONFIG_SYS_JFFS2_FIRST_SECTOR  0x40
-#endif
-
 /* Cache Configuration */
 
 #define ICACHE_STATUS                  (CONFIG_SYS_INIT_RAM_ADDR + \
index 02d04d0776bf8e1897ab0ef0e105cbc627515891..fb65880f32e6194d5fb9bacda838d1b38977c150 100644 (file)
@@ -34,7 +34,6 @@
 #define PHYS_FLASH_1                           0x10000000
 #define CONFIG_SYS_FLASH_BASE                  PHYS_FLASH_1
 
-#define CONFIG_SYS_MONITOR_SEC 1:0-3
 #define CONFIG_SYS_MONITOR_LEN (256 << 10)
 
 /* Address and size of Primary Environment Sector */
index fc00931e0ae10122011c0eda199bd0a601e23e5c..c75991badab4e6520ef74379ea04404c9182f3d0 100644 (file)
@@ -78,8 +78,6 @@
 /*
  * Flash on the LocalBus
  */
-#define CONFIG_SYS_LBC_CACHE_BASE      0xf0000000      /* Localbus cacheable    */
-
 #define CONFIG_SYS_FLASH0              0xFE000000
 #define CONFIG_SYS_FLASH1              0xFC000000
 #define CONFIG_SYS_FLASH_BANKS_LIST    { CONFIG_SYS_FLASH1, CONFIG_SYS_FLASH0 }
 
 /* LIME GDC */
 #define CONFIG_SYS_LIME_BASE           0xc8000000
-#define CONFIG_SYS_LIME_SIZE           0x04000000      /* 64 MB        */
 
 /*
  * General PCI
index d8a334868f311dd1ffa08fc6cbb26c827989c2b9..8167d250f27f00c17302f36de808c835bf51bfee 100644 (file)
                "sf write ${loadaddr} 0x00800000 ${filesize}\0" \
        ""
 
-/* Realtime clock */
-#define CONFIG_RTC_MCFRRTC
-#define CONFIG_SYS_MCFRRTC_BASE                0xFC0A8000
-
 #define CONFIG_SYS_SBFHDR_SIZE         0x7
 
 /* Input, PCI, Flexbus, and VCO */
index f5a9f1284a3d5335a66862244d33baedfca7025a..7eed31c35f038ae9ea7c8d76cae0f4c68fc53b6d 100644 (file)
@@ -31,8 +31,4 @@
 #include "km/km-mpc83xx.h"
 #include "km/km-mpc832x.h"
 
-#define CONFIG_SYS_MAMR                (MxMR_GPL_x4DIS | \
-                                0x0000c000 | \
-                                MxMR_WLFx_2X)
-
 #endif /* __CONFIG_H */