blob: e384b805b212cc3574fefd472c97f577c9628f6c [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glassd97dc8a2016-05-01 11:36:11 -06002/*
3 * Copyright (C) 2000-2005, DENX Software Engineering
4 * Wolfgang Denk <wd@denx.de>
5 * Copyright (C) Procsys. All rights reserved.
6 * Mushtaq Khan <mushtaq_k@procsys.com>
7 * <mushtaqk_921@yahoo.co.in>
8 * Copyright (C) 2008 Freescale Semiconductor, Inc.
9 * Dave Liu <daveliu@freescale.com>
Simon Glassd97dc8a2016-05-01 11:36:11 -060010 */
11
12#include <common.h>
Simon Glassb8341f12017-07-29 11:35:15 -060013#include <ahci.h>
Simon Glassf5a14af2016-05-01 11:36:26 -060014#include <dm.h>
Simon Glassd97dc8a2016-05-01 11:36:11 -060015#include <sata.h>
16
Simon Glassb8341f12017-07-29 11:35:15 -060017#ifndef CONFIG_AHCI
Simon Glassd97dc8a2016-05-01 11:36:11 -060018struct blk_desc sata_dev_desc[CONFIG_SYS_SATA_MAX_DEVICE];
Simon Glassb8341f12017-07-29 11:35:15 -060019#endif
Simon Glassd97dc8a2016-05-01 11:36:11 -060020
Simon Glassb8341f12017-07-29 11:35:15 -060021int sata_reset(struct udevice *dev)
22{
23 struct ahci_ops *ops = ahci_get_ops(dev);
24
25 if (!ops->reset)
26 return -ENOSYS;
27
28 return ops->reset(dev);
29}
30
31int sata_dm_port_status(struct udevice *dev, int port)
32{
33 struct ahci_ops *ops = ahci_get_ops(dev);
34
35 if (!ops->port_status)
36 return -ENOSYS;
37
38 return ops->port_status(dev, port);
39}
40
41int sata_scan(struct udevice *dev)
42{
43 struct ahci_ops *ops = ahci_get_ops(dev);
44
45 if (!ops->scan)
46 return -ENOSYS;
47
48 return ops->scan(dev);
49}
50
51#ifndef CONFIG_AHCI
Simon Glassd97dc8a2016-05-01 11:36:11 -060052#ifdef CONFIG_PARTITIONS
53struct blk_desc *sata_get_dev(int dev)
54{
55 return (dev < CONFIG_SYS_SATA_MAX_DEVICE) ? &sata_dev_desc[dev] : NULL;
56}
57#endif
Simon Glassb8341f12017-07-29 11:35:15 -060058#endif
Simon Glassd97dc8a2016-05-01 11:36:11 -060059
Simon Glassf5a14af2016-05-01 11:36:26 -060060#ifdef CONFIG_BLK
61static unsigned long sata_bread(struct udevice *dev, lbaint_t start,
62 lbaint_t blkcnt, void *dst)
63{
64 return -ENOSYS;
65}
66
67static unsigned long sata_bwrite(struct udevice *dev, lbaint_t start,
68 lbaint_t blkcnt, const void *buffer)
69{
70 return -ENOSYS;
71}
72#else
Simon Glassd97dc8a2016-05-01 11:36:11 -060073static unsigned long sata_bread(struct blk_desc *block_dev, lbaint_t start,
74 lbaint_t blkcnt, void *dst)
75{
76 return sata_read(block_dev->devnum, start, blkcnt, dst);
77}
78
79static unsigned long sata_bwrite(struct blk_desc *block_dev, lbaint_t start,
80 lbaint_t blkcnt, const void *buffer)
81{
82 return sata_write(block_dev->devnum, start, blkcnt, buffer);
83}
Simon Glassf5a14af2016-05-01 11:36:26 -060084#endif
Simon Glassd97dc8a2016-05-01 11:36:11 -060085
Simon Glassb8341f12017-07-29 11:35:15 -060086#ifndef CONFIG_AHCI
Simon Glassd97dc8a2016-05-01 11:36:11 -060087int __sata_initialize(void)
88{
Tang Yuantianaa6ab902016-11-21 10:24:20 +080089 int rc, ret = -1;
Simon Glassd97dc8a2016-05-01 11:36:11 -060090 int i;
91
92 for (i = 0; i < CONFIG_SYS_SATA_MAX_DEVICE; i++) {
93 memset(&sata_dev_desc[i], 0, sizeof(struct blk_desc));
94 sata_dev_desc[i].if_type = IF_TYPE_SATA;
95 sata_dev_desc[i].devnum = i;
96 sata_dev_desc[i].part_type = PART_TYPE_UNKNOWN;
97 sata_dev_desc[i].type = DEV_TYPE_HARDDISK;
98 sata_dev_desc[i].lba = 0;
99 sata_dev_desc[i].blksz = 512;
100 sata_dev_desc[i].log2blksz = LOG2(sata_dev_desc[i].blksz);
Simon Glassf5a14af2016-05-01 11:36:26 -0600101#ifndef CONFIG_BLK
Simon Glassd97dc8a2016-05-01 11:36:11 -0600102 sata_dev_desc[i].block_read = sata_bread;
103 sata_dev_desc[i].block_write = sata_bwrite;
Simon Glassf5a14af2016-05-01 11:36:26 -0600104#endif
Simon Glassd97dc8a2016-05-01 11:36:11 -0600105 rc = init_sata(i);
106 if (!rc) {
107 rc = scan_sata(i);
108 if (!rc && sata_dev_desc[i].lba > 0 &&
Tang Yuantianaa6ab902016-11-21 10:24:20 +0800109 sata_dev_desc[i].blksz > 0) {
Simon Glassd97dc8a2016-05-01 11:36:11 -0600110 part_init(&sata_dev_desc[i]);
Tang Yuantianaa6ab902016-11-21 10:24:20 +0800111 ret = i;
112 }
Simon Glassd97dc8a2016-05-01 11:36:11 -0600113 }
114 }
115
Tang Yuantianaa6ab902016-11-21 10:24:20 +0800116 return ret;
Simon Glassd97dc8a2016-05-01 11:36:11 -0600117}
118int sata_initialize(void) __attribute__((weak, alias("__sata_initialize")));
119
120__weak int __sata_stop(void)
121{
122 int i, err = 0;
123
124 for (i = 0; i < CONFIG_SYS_SATA_MAX_DEVICE; i++)
125 err |= reset_sata(i);
126
127 if (err)
128 printf("Could not reset some SATA devices\n");
129
130 return err;
131}
132int sata_stop(void) __attribute__((weak, alias("__sata_stop")));
Simon Glassb8341f12017-07-29 11:35:15 -0600133#endif
Simon Glassd97dc8a2016-05-01 11:36:11 -0600134
Simon Glassf5a14af2016-05-01 11:36:26 -0600135#ifdef CONFIG_BLK
136static const struct blk_ops sata_blk_ops = {
137 .read = sata_bread,
138 .write = sata_bwrite,
139};
140
141U_BOOT_DRIVER(sata_blk) = {
142 .name = "sata_blk",
143 .id = UCLASS_BLK,
144 .ops = &sata_blk_ops,
145};
146#else
Simon Glassd97dc8a2016-05-01 11:36:11 -0600147U_BOOT_LEGACY_BLK(sata) = {
148 .if_typename = "sata",
149 .if_type = IF_TYPE_SATA,
150 .max_devs = CONFIG_SYS_SATA_MAX_DEVICE,
151 .desc = sata_dev_desc,
152};
Simon Glassf5a14af2016-05-01 11:36:26 -0600153#endif