2 * Copyright (C) 2010 Albert ARIBAUD <albert.aribaud@free.fr>
4 * Written-by: Albert ARIBAUD <albert.aribaud@free.fr>
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 {
37 /* offset 0x300 : ATA Interface registers */
55 * - to compile at all, we need CONFIG_SYS_ATA_BASE_ADDR.
56 * - for ide_preinit to make sense, we need at least one of
57 * CONFIG_SYS_ATA_IDE0_OFFSET or CONFIG_SYS_ATA_IDE0_OFFSET;
58 * - for inde_preinit to be called, we need CONFIG_IDE_PREINIT.
59 * Fail with an explanation message if these conditions are not met.
60 * This is particularly important for CONFIG_IDE_PREINIT, because
61 * its lack would not cause a build error.
64 #if !defined(CONFIG_SYS_ATA_BASE_ADDR)
65 #error CONFIG_SYS_ATA_BASE_ADDR must be defined
66 #elif !defined(CONFIG_SYS_ATA_IDE0_OFFSET) \
67 && !defined(CONFIG_SYS_ATA_IDE1_OFFSET)
68 #error CONFIG_SYS_ATA_IDE0_OFFSET or CONFIG_SYS_ATA_IDE1_OFFSET \
70 #elif !defined(CONFIG_IDE_PREINIT)
71 #error CONFIG_IDE_PREINIT must be defined
75 * Masks and values for SControl DETection and Interface Power Management,
76 * and for SStatus DETection.
79 #define MVSATA_SCONTROL_DET_MASK 0x0000000F
80 #define MVSATA_SCONTROL_DET_NONE 0x00000000
81 #define MVSATA_SCONTROL_DET_INIT 0x00000001
82 #define MVSATA_SCONTROL_IPM_MASK 0x00000F00
83 #define MVSATA_SCONTROL_IPM_NO_LP_ALLOWED 0x00000300
84 #define MVSATA_SCONTROL_MASK \
85 (MVSATA_SCONTROL_DET_MASK|MVSATA_SCONTROL_IPM_MASK)
86 #define MVSATA_PORT_INIT \
87 (MVSATA_SCONTROL_DET_INIT|MVSATA_SCONTROL_IPM_NO_LP_ALLOWED)
88 #define MVSATA_PORT_USE \
89 (MVSATA_SCONTROL_DET_NONE|MVSATA_SCONTROL_IPM_NO_LP_ALLOWED)
90 #define MVSATA_SSTATUS_DET_MASK 0x0000000F
91 #define MVSATA_SSTATUS_DET_DEVCOMM 0x00000003
94 * Status codes to return to client callers. Currently, callers ignore
95 * exact value and only care for zero or nonzero, so no need to make this
96 * public, it is only #define'd for clarity.
97 * If/when standard negative codes are implemented in U-boot, then these
98 * #defines should be moved to, or replaced by ones from, the common list
102 #define MVSATA_STATUS_OK 0
103 #define MVSATA_STATUS_TIMEOUT -1
106 * Initialize one MVSATAHC port: set SControl's IPM to "always active"
107 * and DET to "reset", then wait for SStatus's DET to become "device and
108 * comm ok" (or time out after 50 us if no device), then set SControl's
109 * DET back to "no action".
112 static int mvsata_ide_initialize_port(struct mvsata_port_registers *port)
116 u32 timeleft = 10000; /* wait at most 10 ms for SATA reset to complete */
118 /* Set control IPM to 3 (no low power) and DET to 1 (initialize) */
119 control = readl(&port->scontrol);
120 control = (control & ~MVSATA_SCONTROL_MASK) | MVSATA_PORT_INIT;
121 writel(control, &port->scontrol);
122 /* Toggle control DET back to 0 (normal operation) */
123 control = (control & ~MVSATA_SCONTROL_MASK) | MVSATA_PORT_USE;
124 writel(control, &port->scontrol);
125 /* wait for status DET to become 3 (device and communication OK) */
127 status = readl(&port->sstatus) & MVSATA_SSTATUS_DET_MASK;
128 if (status == MVSATA_SSTATUS_DET_DEVCOMM)
132 /* return success or time-out error depending on time left */
134 return MVSATA_STATUS_TIMEOUT;
135 return MVSATA_STATUS_OK;
139 * ide_preinit() will be called by ide_init in cmd_ide.c and will
140 * reset the MVSTATHC ports needed by the board.
143 int ide_preinit(void)
146 /* Enable ATA port 0 (could be SATA port 0 or 1) if declared */
147 #if defined(CONFIG_SYS_ATA_IDE0_OFFSET)
148 status = mvsata_ide_initialize_port(
149 (struct mvsata_port_registers *)
150 (CONFIG_SYS_ATA_BASE_ADDR + CONFIG_SYS_ATA_IDE0_OFFSET));
154 /* Enable ATA port 1 (could be SATA port 0 or 1) if declared */
155 #if defined(CONFIG_SYS_ATA_IDE1_OFFSET)
156 status = mvsata_ide_initialize_port(
157 (struct mvsata_port_registers *)
158 (CONFIG_SYS_ATA_BASE_ADDR + CONFIG_SYS_ATA_IDE1_OFFSET));
162 /* return success if all ports initializations succeeded */
163 return MVSATA_STATUS_OK;