2 * Copyright (C) 2010 Albert ARIBAUD <albert.u.boot@aribaud.net>
4 * Written-by: Albert ARIBAUD <albert.u.boot@aribaud.net>
6 * See file CREDITS for list of people who contributed to this
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of
12 * the License, or (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
28 #if defined(CONFIG_ORION5X)
29 #include <asm/arch/orion5x.h>
30 #elif defined(CONFIG_KIRKWOOD)
31 #include <asm/arch/kirkwood.h>
34 /* SATA port registers */
35 struct mvsata_port_registers {
39 /* offset 0x300 : ATA Interface registers */
57 * - to compile at all, we need CONFIG_SYS_ATA_BASE_ADDR.
58 * - for ide_preinit to make sense, we need at least one of
59 * CONFIG_SYS_ATA_IDE0_OFFSET or CONFIG_SYS_ATA_IDE0_OFFSET;
60 * - for inde_preinit to be called, we need CONFIG_IDE_PREINIT.
61 * Fail with an explanation message if these conditions are not met.
62 * This is particularly important for CONFIG_IDE_PREINIT, because
63 * its lack would not cause a build error.
66 #if !defined(CONFIG_SYS_ATA_BASE_ADDR)
67 #error CONFIG_SYS_ATA_BASE_ADDR must be defined
68 #elif !defined(CONFIG_SYS_ATA_IDE0_OFFSET) \
69 && !defined(CONFIG_SYS_ATA_IDE1_OFFSET)
70 #error CONFIG_SYS_ATA_IDE0_OFFSET or CONFIG_SYS_ATA_IDE1_OFFSET \
72 #elif !defined(CONFIG_IDE_PREINIT)
73 #error CONFIG_IDE_PREINIT must be defined
77 * Masks and values for SControl DETection and Interface Power Management,
78 * and for SStatus DETection.
81 #define MVSATA_EDMA_CMD_ATA_RST 0x00000004
82 #define MVSATA_SCONTROL_DET_MASK 0x0000000F
83 #define MVSATA_SCONTROL_DET_NONE 0x00000000
84 #define MVSATA_SCONTROL_DET_INIT 0x00000001
85 #define MVSATA_SCONTROL_IPM_MASK 0x00000F00
86 #define MVSATA_SCONTROL_IPM_NO_LP_ALLOWED 0x00000300
87 #define MVSATA_SCONTROL_MASK \
88 (MVSATA_SCONTROL_DET_MASK|MVSATA_SCONTROL_IPM_MASK)
89 #define MVSATA_PORT_INIT \
90 (MVSATA_SCONTROL_DET_INIT|MVSATA_SCONTROL_IPM_NO_LP_ALLOWED)
91 #define MVSATA_PORT_USE \
92 (MVSATA_SCONTROL_DET_NONE|MVSATA_SCONTROL_IPM_NO_LP_ALLOWED)
93 #define MVSATA_SSTATUS_DET_MASK 0x0000000F
94 #define MVSATA_SSTATUS_DET_DEVCOMM 0x00000003
97 * Status codes to return to client callers. Currently, callers ignore
98 * exact value and only care for zero or nonzero, so no need to make this
99 * public, it is only #define'd for clarity.
100 * If/when standard negative codes are implemented in U-boot, then these
101 * #defines should be moved to, or replaced by ones from, the common list
105 #define MVSATA_STATUS_OK 0
106 #define MVSATA_STATUS_TIMEOUT -1
109 * Initialize one MVSATAHC port: set SControl's IPM to "always active"
110 * and DET to "reset", then wait for SStatus's DET to become "device and
111 * comm ok" (or time out after 50 us if no device), then set SControl's
112 * DET back to "no action".
115 static int mvsata_ide_initialize_port(struct mvsata_port_registers *port)
119 u32 timeleft = 10000; /* wait at most 10 ms for SATA reset to complete */
122 writel(MVSATA_EDMA_CMD_ATA_RST, &port->edma_cmd);
123 udelay(25); /* taken from original marvell port */
124 writel(0, &port->edma_cmd);
126 /* Set control IPM to 3 (no low power) and DET to 1 (initialize) */
127 control = readl(&port->scontrol);
128 control = (control & ~MVSATA_SCONTROL_MASK) | MVSATA_PORT_INIT;
129 writel(control, &port->scontrol);
130 /* Toggle control DET back to 0 (normal operation) */
131 control = (control & ~MVSATA_SCONTROL_MASK) | MVSATA_PORT_USE;
132 writel(control, &port->scontrol);
133 /* wait for status DET to become 3 (device and communication OK) */
135 status = readl(&port->sstatus) & MVSATA_SSTATUS_DET_MASK;
136 if (status == MVSATA_SSTATUS_DET_DEVCOMM)
140 /* return success or time-out error depending on time left */
142 return MVSATA_STATUS_TIMEOUT;
143 return MVSATA_STATUS_OK;
147 * ide_preinit() will be called by ide_init in cmd_ide.c and will
148 * reset the MVSTATHC ports needed by the board.
151 int ide_preinit(void)
153 int ret = MVSATA_STATUS_TIMEOUT;
156 /* Enable ATA port 0 (could be SATA port 0 or 1) if declared */
157 #if defined(CONFIG_SYS_ATA_IDE0_OFFSET)
158 status = mvsata_ide_initialize_port(
159 (struct mvsata_port_registers *)
160 (CONFIG_SYS_ATA_BASE_ADDR + CONFIG_SYS_ATA_IDE0_OFFSET));
161 if (status == MVSATA_STATUS_OK)
162 ret = MVSATA_STATUS_OK;
164 /* Enable ATA port 1 (could be SATA port 0 or 1) if declared */
165 #if defined(CONFIG_SYS_ATA_IDE1_OFFSET)
166 status = mvsata_ide_initialize_port(
167 (struct mvsata_port_registers *)
168 (CONFIG_SYS_ATA_BASE_ADDR + CONFIG_SYS_ATA_IDE1_OFFSET));
169 if (status == MVSATA_STATUS_OK)
170 ret = MVSATA_STATUS_OK;
172 /* Return success if at least one port initialization succeeded */