]> git.ipfire.org Git - people/ms/u-boot.git/blob - arch/arm/mach-omap2/sata.c
0c8268905aa5fae593c6d19358d9cc5067278bd9
[people/ms/u-boot.git] / arch / arm / mach-omap2 / sata.c
1 /*
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>
15 #include <sata.h>
16 #include <asm/io.h>
17 #include "pipe3-phy.h"
18
19 static 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
29 struct 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
35 int init_sata(int dev)
36 {
37 int ret;
38 u32 val;
39
40 sata_phy.power_reg = (void __iomem *)(*ctrl)->control_phy_power_sata;
41
42 /* Power up the PHY */
43 phy_pipe3_power_on(&sata_phy);
44
45 /* Enable SATA module, No Idle, No Standby */
46 val = TI_SATA_IDLE_NO | TI_SATA_STANDBY_NO;
47 writel(val, TI_SATA_WRAPPER_BASE + TI_SATA_SYSCONFIG);
48
49 ret = ahci_init((void __iomem *)DWC_AHSATA_BASE);
50
51 return ret;
52 }
53
54 int reset_sata(int dev)
55 {
56 return 0;
57 }
58
59 /* On OMAP platforms SATA provides the SCSI subsystem */
60 void scsi_init(void)
61 {
62 init_sata(0);
63 scsi_scan(1);
64 }
65
66 void scsi_bus_reset(void)
67 {
68 ahci_reset((void __iomem *)DWC_AHSATA_BASE);
69 ahci_init((void __iomem *)DWC_AHSATA_BASE);
70 }