blob: 2c2d1bce363d8dc8059b0607f568c9d77e9d2fb0 [file] [log] [blame]
Roger Quadrosa087a7f2013-11-11 16:56:41 +02001/*
2 * TI SATA platform driver
3 *
4 * (C) Copyright 2013
5 * Texas Instruments, <www.ti.com>
6 *
7 * SPDX-License-Identifier: GPL-2.0+
8 */
9
10#include <common.h>
11#include <ahci.h>
12#include <scsi.h>
13#include <asm/arch/clock.h>
14#include <asm/arch/sata.h>
Dan Murphye9024ef2014-02-03 06:59:02 -060015#include <sata.h>
Roger Quadrosa087a7f2013-11-11 16:56:41 +020016#include <asm/io.h>
17#include "pipe3-phy.h"
18
19static struct pipe3_dpll_map dpll_map_sata[] = {
20 {12000000, {1000, 7, 4, 6, 0} }, /* 12 MHz */
21 {16800000, {714, 7, 4, 6, 0} }, /* 16.8 MHz */
22 {19200000, {625, 7, 4, 6, 0} }, /* 19.2 MHz */
23 {20000000, {600, 7, 4, 6, 0} }, /* 20 MHz */
24 {26000000, {461, 7, 4, 6, 0} }, /* 26 MHz */
25 {38400000, {312, 7, 4, 6, 0} }, /* 38.4 MHz */
26 { }, /* Terminator */
27};
28
29struct omap_pipe3 sata_phy = {
30 .pll_ctrl_base = (void __iomem *)TI_SATA_PLLCTRL_BASE,
31 /* .power_reg is updated at runtime */
32 .dpll_map = dpll_map_sata,
33};
34
Dan Murphye9024ef2014-02-03 06:59:02 -060035int init_sata(int dev)
Roger Quadrosa087a7f2013-11-11 16:56:41 +020036{
37 int ret;
38 u32 val;
39
40 u32 const clk_domains_sata[] = {
41 0
42 };
43
44 u32 const clk_modules_hw_auto_sata[] = {
45 (*prcm)->cm_l3init_ocp2scp3_clkctrl,
46 0
47 };
48
49 u32 const clk_modules_explicit_en_sata[] = {
50 (*prcm)->cm_l3init_sata_clkctrl,
51 0
52 };
53
54 do_enable_clocks(clk_domains_sata,
55 clk_modules_hw_auto_sata,
56 clk_modules_explicit_en_sata,
57 0);
58
59 /* Enable optional functional clock for SATA */
60 setbits_le32((*prcm)->cm_l3init_sata_clkctrl,
61 SATA_CLKCTRL_OPTFCLKEN_MASK);
62
63 sata_phy.power_reg = (void __iomem *)(*ctrl)->control_phy_power_sata;
64
65 /* Power up the PHY */
66 phy_pipe3_power_on(&sata_phy);
67
68 /* Enable SATA module, No Idle, No Standby */
69 val = TI_SATA_IDLE_NO | TI_SATA_STANDBY_NO;
70 writel(val, TI_SATA_WRAPPER_BASE + TI_SATA_SYSCONFIG);
71
Scott Wood9efaca32015-04-17 09:19:01 -050072 ret = ahci_init((void __iomem *)DWC_AHSATA_BASE);
Roger Quadrosa087a7f2013-11-11 16:56:41 +020073
74 return ret;
75}
Roger Quadros3160b1b2014-09-23 18:07:02 +030076
Nikita Kiryanov10ee8ec2014-11-21 12:47:23 +020077int reset_sata(int dev)
78{
79 return 0;
80}
81
Roger Quadros3160b1b2014-09-23 18:07:02 +030082/* On OMAP platforms SATA provides the SCSI subsystem */
83void scsi_init(void)
84{
85 init_sata(0);
Roger Quadrosd59baeb2014-09-23 18:07:03 +030086 scsi_scan(1);
Roger Quadros3160b1b2014-09-23 18:07:02 +030087}
Dmitry Lifshitz8decf5d2014-12-15 16:02:57 +020088
89void scsi_bus_reset(void)
90{
Scott Wood9efaca32015-04-17 09:19:01 -050091 ahci_reset((void __iomem *)DWC_AHSATA_BASE);
92 ahci_init((void __iomem *)DWC_AHSATA_BASE);
Dmitry Lifshitz8decf5d2014-12-15 16:02:57 +020093}