blob: 4672dc534c5efbbef5d9ebb4afee2365b0a9b60d [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Roger Quadrosa087a7f2013-11-11 16:56:41 +02002/*
3 * TI SATA platform driver
4 *
5 * (C) Copyright 2013
6 * Texas Instruments, <www.ti.com>
Roger Quadrosa087a7f2013-11-11 16:56:41 +02007 */
8
9#include <common.h>
10#include <ahci.h>
11#include <scsi.h>
12#include <asm/arch/clock.h>
13#include <asm/arch/sata.h>
Dan Murphye9024ef2014-02-03 06:59:02 -060014#include <sata.h>
Roger Quadrosa087a7f2013-11-11 16:56:41 +020015#include <asm/io.h>
16#include "pipe3-phy.h"
17
18static struct pipe3_dpll_map dpll_map_sata[] = {
19 {12000000, {1000, 7, 4, 6, 0} }, /* 12 MHz */
20 {16800000, {714, 7, 4, 6, 0} }, /* 16.8 MHz */
21 {19200000, {625, 7, 4, 6, 0} }, /* 19.2 MHz */
22 {20000000, {600, 7, 4, 6, 0} }, /* 20 MHz */
23 {26000000, {461, 7, 4, 6, 0} }, /* 26 MHz */
24 {38400000, {312, 7, 4, 6, 0} }, /* 38.4 MHz */
25 { }, /* Terminator */
26};
27
28struct omap_pipe3 sata_phy = {
29 .pll_ctrl_base = (void __iomem *)TI_SATA_PLLCTRL_BASE,
30 /* .power_reg is updated at runtime */
31 .dpll_map = dpll_map_sata,
32};
33
Dan Murphye9024ef2014-02-03 06:59:02 -060034int init_sata(int dev)
Roger Quadrosa087a7f2013-11-11 16:56:41 +020035{
36 int ret;
37 u32 val;
38
Roger Quadrosa087a7f2013-11-11 16:56:41 +020039 sata_phy.power_reg = (void __iomem *)(*ctrl)->control_phy_power_sata;
40
41 /* Power up the PHY */
42 phy_pipe3_power_on(&sata_phy);
43
44 /* Enable SATA module, No Idle, No Standby */
45 val = TI_SATA_IDLE_NO | TI_SATA_STANDBY_NO;
46 writel(val, TI_SATA_WRAPPER_BASE + TI_SATA_SYSCONFIG);
47
Scott Wood9efaca32015-04-17 09:19:01 -050048 ret = ahci_init((void __iomem *)DWC_AHSATA_BASE);
Roger Quadrosa087a7f2013-11-11 16:56:41 +020049
50 return ret;
51}
Roger Quadros3160b1b2014-09-23 18:07:02 +030052
Nikita Kiryanov10ee8ec2014-11-21 12:47:23 +020053int reset_sata(int dev)
54{
55 return 0;
56}
57
Roger Quadros3160b1b2014-09-23 18:07:02 +030058/* On OMAP platforms SATA provides the SCSI subsystem */
59void scsi_init(void)
60{
61 init_sata(0);
Roger Quadrosd59baeb2014-09-23 18:07:03 +030062 scsi_scan(1);
Roger Quadros3160b1b2014-09-23 18:07:02 +030063}
Dmitry Lifshitz8decf5d2014-12-15 16:02:57 +020064
Simon Glass4682c8a2017-06-14 21:28:40 -060065int scsi_bus_reset(struct udevice *dev)
Dmitry Lifshitz8decf5d2014-12-15 16:02:57 +020066{
Scott Wood9efaca32015-04-17 09:19:01 -050067 ahci_reset((void __iomem *)DWC_AHSATA_BASE);
68 ahci_init((void __iomem *)DWC_AHSATA_BASE);
Simon Glass4682c8a2017-06-14 21:28:40 -060069
70 return 0;
Dmitry Lifshitz8decf5d2014-12-15 16:02:57 +020071}