mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
e9024ef27d
Add the SATA boot support for OMAP5 and dra7xx. Renamed the omap_sata_init to the common init_sata(int dev) for commonality in with sata stack. Added the ROM boot device ID for SATA. Signed-off-by: Dan Murphy <dmurphy@ti.com> Reviewed-by: Roger Quadros <rogerq@ti.com> Signed-off-by: Tom Rini <trini@ti.com>
39 lines
1,011 B
C
39 lines
1,011 B
C
/*
|
|
* SATA Wrapper Register map
|
|
*
|
|
* (C) Copyright 2013
|
|
* Texas Instruments, <www.ti.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef _TI_SATA_H
|
|
#define _TI_SATA_H
|
|
|
|
/* SATA Wrapper module */
|
|
#define TI_SATA_WRAPPER_BASE (OMAP54XX_L4_CORE_BASE + 0x141100)
|
|
/* SATA PHY Module */
|
|
#define TI_SATA_PLLCTRL_BASE (OMAP54XX_L4_CORE_BASE + 0x96800)
|
|
|
|
/* SATA Wrapper register offsets */
|
|
#define TI_SATA_SYSCONFIG 0x00
|
|
#define TI_SATA_CDRLOCK 0x04
|
|
|
|
/* Register Set */
|
|
#define TI_SATA_SYSCONFIG_OVERRIDE0 (1 << 16)
|
|
#define TI_SATA_SYSCONFIG_STANDBY_MASK (0x3 << 4)
|
|
#define TI_SATA_SYSCONFIG_IDLE_MASK (0x3 << 2)
|
|
|
|
/* Standby modes */
|
|
#define TI_SATA_STANDBY_FORCE 0x0
|
|
#define TI_SATA_STANDBY_NO (0x1 << 4)
|
|
#define TI_SATA_STANDBY_SMART_WAKE (0x3 << 4)
|
|
#define TI_SATA_STANDBY_SMART (0x2 << 4)
|
|
|
|
/* Idle modes */
|
|
#define TI_SATA_IDLE_FORCE 0x0
|
|
#define TI_SATA_IDLE_NO (0x1 << 2)
|
|
#define TI_SATA_IDLE_SMART_WAKE (0x3 << 2)
|
|
#define TI_SATA_IDLE_SMART (0x2 << 2)
|
|
|
|
#endif /* _TI_SATA_H */
|