reactos/hal/halx86/xbox/halxbox.h
Stanislav Motylkov af7ec17ce1 [HALXBOX] Don't use Xbox partitions if MBR signature found (#2253)
* [HALXBOX] Formatting only.

* [HALXBOX] Don't use Xbox partitions if MBR signature found.

- Fixes BSOD 0x7B when booting from a HDD that have both MBR and BRFR signatures.
- It happens when you format Xbox (BRFR) disk as MBR.
  After that "BRFR" signature is still located at sector 3.
- Also fix pre-existing leaks.

CORE-16216 CORE-16329
2020-01-18 18:41:32 +01:00

43 lines
1.3 KiB
C

/*
* PROJECT: Xbox HAL
* LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
* PURPOSE: Xbox specific routines
* COPYRIGHT: Copyright 2004 Gé van Geldorp (gvg@reactos.com)
* Copyright 2019-2020 Stanislav Motylkov (x86corez@gmail.com)
*
* REFERENCES: https://xboxdevwiki.net/SMBus
* https://github.com/XboxDev/cromwell/blob/master/drivers/pci/i2cio.c
* https://github.com/torvalds/linux/blob/master/drivers/i2c/busses/i2c-amd756.c
* https://github.com/xqemu/xqemu/blob/master/hw/xbox/smbus_xbox_smc.c
*/
#ifndef HALXBOX_H_INCLUDED
#define HALXBOX_H_INCLUDED
#include <hal.h>
#include <ntdddisk.h>
#define TAG_HAL_XBOX 'XlaH'
#define SMB_IO_BASE 0xC000
#define SMB_GLOBAL_STATUS (0 + SMB_IO_BASE)
#define SMB_GLOBAL_ENABLE (2 + SMB_IO_BASE)
#define SMB_HOST_ADDRESS (4 + SMB_IO_BASE)
#define SMB_HOST_DATA (6 + SMB_IO_BASE)
#define SMB_HOST_COMMAND (8 + SMB_IO_BASE)
#define SMB_DEVICE_SMC_PIC16LC 0x10
#define SMC_REG_POWER 0x02
#define SMC_REG_POWER_RESET 0x01
#define SMC_REG_POWER_CYCLE 0x40
#define SMC_REG_POWER_SHUTDOWN 0x80
VOID HalpXboxInitPciBus(PBUS_HANDLER BusHandler);
VOID HalpXboxInitPartIo(VOID);
#endif /* HALXBOX_H_INCLUDED */
/* EOF */