Modifications since 0.7.1:
======================================================================
+----------------------------------------------------------------------
+GENIETV patch by Paolo Scaffardi (Fri, 5 Jan 2001 11:27:44 +0100):
+* Added support for AMDLV040B 512Kb flash into flash.h
+* Changed TEXTBASE into GENIETV configuration
+* Added VIDEO_ADDR definition into config_GENIETV.h
+* Removed unused files: wl_4ppm_keyboard.c and wl_4ppm_keyboard.h
+----------------------------------------------------------------------
+
* Fix in cpu/mpc8xx/fec.c (by Dave Ellis): The PHY discovery code
must be called after the FEC is enabled, since it uses the FEC to
talk to the PHY.
# MA 02111-1307 USA
#
-TEXT_BASE = 0x02800000
-OBJCFLAGS = --set-section-flags=.ppcenv=contents,alloc,load,data
+TEXT_BASE = 0x00000000
+OBJCFLAGS = --set-section-flags=.ppcenv=contents,alloc,load,data
+++ /dev/null
-/*
-** Wireless 56Khz 4PPM keyboard interface on SMCx
-** ==============================================
-** (C) 2000 by Paolo Scaffardi (arsenio@tin.it)
-** AIRVENT SAM s.p.a - RIMINI(ITALY)
-**
-** Not currently supported. Still under construction.
-*/
-#include <ppcboot.h>
-#include <config.h>
-#include <wl_4ppm_keyboard.h>
-
-int wl_4ppm_keyboard_getc(void)
-{
- return serial_getc();
-}
-
-int wl_4ppm_keyboard_tstc(void)
-{
- return serial_tstc();
-}
#define CONFIG_ENV_OVERWRITE 1 // Overwrite the environment
#define CONFIG_VIDEO 1 // To enable the video initialization
+#define CONFIG_VIDEO_ADDR 0x00200000
#define CONFIG_I2C 1 // Needed for 7176 & 7177
#define CONFIG_PCMCIA 1 // To enable the PCMCIA initialization
#define INTL_ID_28F016S 0x66a066a0 /* 28F016S[VS] ID (16M = 512k x 16) */
+#define AMD_ID_LV040B 0x4F /* 29LV040B ID (512Kb, bottom boot sector) */
+
#define AMD_ID_F040B 0xA4 /* 29F040B ID ( 4 M, bottom boot sect) */
#define AMD_ID_F080B 0xD5 /* 29F0B0 ID ( 1 M) */
+++ /dev/null
-/*
-** Wireless 56Khz 4PPM keyboard interface on SMCx
-** ==============================================
-** (C) 2000 by Paolo Scaffardi (arsenio@tin.it)
-** AIRVENT SAM s.p.a - RIMINI(ITALY)
-**
-** Not currently supported. Still under construction.
-*/
-
-#ifndef _WL_4PPM_KEYBOARD_
-#define _WL_4PPM_KEYBOARD_
-
-int wl_4ppm_keyboard_getc(void);
-int wl_4ppm_keyboard_tstc(void);
-
-#endif