Skip to content

Commit 6b9c55b

Browse files
committed
-Too many changes to list.
-Annoying bug fixes. -Added ConfirmDialog menu. -Rework on flash handling functions. -Added basic check for flashing XBlast OS update image. -Removed code for USB keyboard and IR remote. Use a controller! -Quickboot feature added. Press white button to bypass quickboot.
1 parent 817544d commit 6b9c55b

File tree

281 files changed

+922
-498
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

281 files changed

+922
-498
lines changed

.cproject

100644100755
File mode changed.

.project

100644100755
File mode changed.

COPYING

100644100755
File mode changed.

Makefile

100644100755
+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1+
#CC = gcc-3.3.gcc-opt
12
CC = gcc-3.3
3+
24
# prepare check for gcc 3.3, $(GCC_3.3) will either be 0 or 1
35
GCC_3.3 := $(shell expr `$(CC) -dumpversion` \>= 3.3)
46

@@ -146,6 +148,7 @@ OBJECTS-CROM += $(TOPDIR)/obj/BootLCD.o
146148
OBJECTS-CROM += $(TOPDIR)/obj/BootParser.o
147149
OBJECTS-CROM += $(TOPDIR)/obj/BootFATX.o
148150
OBJECTS-CROM += $(TOPDIR)/obj/ProgressBar.o
151+
OBJECTS-CROM += $(TOPDIR)/obj/ConfirmDialog.o
149152
#USB
150153
OBJECTS-CROM += $(TOPDIR)/obj/config.o
151154
OBJECTS-CROM += $(TOPDIR)/obj/hcd-pci.o

README.md

100644100755
File mode changed.

Rules.make

100644100755
File mode changed.

boot/BootResetAction.c

+36-21
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,7 @@ void ClearScreen (void) {
4545
extern void BootResetAction ( void ) {
4646
bool fMbrPresent=false;
4747
bool fSeenActive=false;
48-
int nFATXPresent=false;
49-
bool fHasHardware=false; //Flag used to determine if a LPCMod is detected.
48+
int nFATXPresent=false;
5049
bool fFirstBoot=false; //Flag to indicate first boot since flash update
5150
int nTempCursorX, nTempCursorY;
5251
int n, nx;
@@ -66,6 +65,8 @@ extern void BootResetAction ( void ) {
6665
"Unknown"
6766
};
6867

68+
fHasHardware = false;
69+
6970
memcpy(&cromwell_config,(void*)(0x03A00000+0x20),4);
7071
memcpy(&cromwell_retryload,(void*)(0x03A00000+0x24),4);
7172
memcpy(&cromwell_loadbank,(void*)(0x03A00000+0x28),4);
@@ -99,7 +100,7 @@ extern void BootResetAction ( void ) {
99100
if(fHasHardware){ //Don't try to read from flash if none is detected
100101
//Make sure we'll be reading from OS Bank
101102
switchBank(BNKOS);
102-
//Retreive LPCMod OS settings from flash
103+
//Retrieve XBlast OS settings from flash
103104
BootFlashGetOSSettings(&LPCmodSettings);
104105
}
105106

@@ -124,8 +125,9 @@ extern void BootResetAction ( void ) {
124125
LPCmodSettings.LCDsettings.customTextBoot == 0xFF ||
125126
LPCmodSettings.LCDsettings.displayBIOSNameBoot == 0xFF){
126127
fFirstBoot = true;
127-
initialLPCModOSBoot(&LPCmodSettings); //No settings for LPCMod were present in flash. //Certainly don't write to flash if no proper hardware was detected!
128-
BootFlashSaveOSSettings(); //Put some initial values in there.
128+
initialLPCModOSBoot(&LPCmodSettings); //No settings for LPCMod were present in flash.
129+
//OS sometimes lock on after a fresh flash. Disabling to see if that's causing it.(probably)
130+
//BootFlashSaveOSSettings(); //Put some initial values in there.
129131
LEDFirstBoot(NULL);
130132
LPCmodSettings.OSsettings.bootTimeout = 0; //No countdown since it's the first boot since a flash update.
131133
//Configure your device first.
@@ -154,6 +156,27 @@ extern void BootResetAction ( void ) {
154156

155157
BootEepromReadEntireEEPROM();
156158

159+
I2CTransmitWord(0x10, 0x1a01); // unknown, done immediately after reading out eeprom data
160+
I2CTransmitWord(0x10, 0x1b04); // unknown
161+
162+
/* Here, the interrupts are Switched on now */
163+
BootPciInterruptEnable();
164+
/* We allow interrupts */
165+
nInteruptable = 1;
166+
167+
#ifndef SILENT_MODE
168+
printk(" BOOT: start USB init\n");
169+
#endif
170+
BootStartUSB();
171+
172+
//Load up some more custom settings right before booting to OS.
173+
if(!fFirstBoot){
174+
wait_ms(550);
175+
if(XPAD_current[0].keys[5] == 0 && LPCmodSettings.OSsettings.Quickboot == 1){
176+
BootModBios(&(LPCmodSettings.OSsettings.activeBank));
177+
}
178+
initialSetLED(LPCmodSettings.OSsettings.LEDColor);
179+
}
157180
// Load and Init the Background image
158181
// clear the Video Ram
159182
memset((void *)FB_START,0x00,0x400000);
@@ -171,14 +194,11 @@ extern void BootResetAction ( void ) {
171194
#ifndef DEBUG_MODE
172195
BootVideoClearScreen(&jpegBackdrop, 0, 0xffff);
173196
#endif
174-
175-
I2CTransmitWord(0x10, 0x1a01); // unknown, done immediately after reading out eeprom data
176-
I2CTransmitWord(0x10, 0x1b04); // unknown
177197

178198
/* Here, the interrupts are Switched on now */
179-
BootPciInterruptEnable();
199+
// BootPciInterruptEnable();
180200
/* We allow interrupts */
181-
nInteruptable = 1;
201+
// nInteruptable = 1;
182202

183203
I2CTransmitWord(0x10, 0x1901); // no reset on eject
184204

@@ -210,8 +230,8 @@ extern void BootResetAction ( void ) {
210230
}
211231

212232
mbVersion = I2CGetXboxMBRev();
213-
printk(" Xbox revision: %s ", xbox_mb_rev[mbVersion]);
214-
printk(" RAM: %d", xbox_ram);
233+
printk(" Xbox revision: %s ", xbox_mb_rev[mbVersion]);
234+
printk("RAM: %d", xbox_ram);
215235
printk("MiB\n");
216236

217237
VIDEO_CURSOR_POSX=(vmode.xmargin/*+64*/)*4;
@@ -272,10 +292,8 @@ extern void BootResetAction ( void ) {
272292

273293

274294

275-
#ifndef SILENT_MODE
276-
printk(" BOOT: start USB init\n");
277-
#endif
278-
BootStartUSB();
295+
296+
// BootStartUSB();
279297

280298
// init the IDE devices
281299
#ifndef SILENT_MODE
@@ -299,10 +317,7 @@ extern void BootResetAction ( void ) {
299317

300318

301319

302-
//Load up some more custom settings right before booting to OS.
303-
if(!fFirstBoot){
304-
initialSetLED(LPCmodSettings.OSsettings.LEDColor);
305-
}
320+
306321

307322

308323
BootIdeInit();
@@ -313,7 +328,7 @@ extern void BootResetAction ( void ) {
313328
nTempCursorMbrY=VIDEO_CURSOR_POSY;
314329

315330
// printk("i2C=%d SMC=%d, IDE=%d, tick=%d una=%d unb=%d\n", nCountI2cinterrupts, nCountInterruptsSmc, nCountInterruptsIde, BIOS_TICK_COUNT, nCountUnusedInterrupts, nCountUnusedInterruptsPic2);
316-
IconMenuInit(fHasHardware);
331+
IconMenuInit();
317332
//inputLED();
318333
IconMenu();
319334

boot_eth/Elf.pm

100644100755
File mode changed.

boot_eth/Makefile

100644100755
File mode changed.

boot_eth/README.ethboot

100644100755
File mode changed.

boot_eth/eth_Startup.S

100644100755
File mode changed.

boot_eth/eth_start.ld

100644100755
File mode changed.

boot_rom/2bBootLibrary.c

100644100755
File mode changed.

boot_rom/2bBootStartBios.c

100644100755
File mode changed.

boot_rom/2bBootStartup.S

100644100755
File mode changed.

boot_rom/2bBootStartup.S.1.6b

100644100755
File mode changed.

boot_rom/2bBootStartup.S.normal

100644100755
File mode changed.

boot_rom/2bPicResponseAction.c

100644100755
File mode changed.

boot_rom/2bconsts.h

100644100755
File mode changed.

boot_rom/2bload.h

100644100755
File mode changed.

boot_rom/Makefile

100644100755
File mode changed.

boot_rom/Xcodes.h

100644100755
File mode changed.

boot_rom/Xcodes.h.1.6b

100644100755
File mode changed.

boot_rom/Xcodes.h.normal

100644100755
File mode changed.

boot_rom/bootrom.ld

100644100755
File mode changed.

boot_xbe/Makefile

100644100755
File mode changed.

0 commit comments

Comments
 (0)