blob: ce3e9b5a400c7e2b5ddfeec8f1ae6785f70a144f [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 Glasse6f6f9e2020-05-10 11:39:58 -060014#include <blk.h>
Simon Glassf5a14af2016-05-01 11:36:26 -060015#include <dm.h>
Simon Glasse6f6f9e2020-05-10 11:39:58 -060016#include <part.h>
Simon Glassd97dc8a2016-05-01 11:36:11 -060017#include <sata.h>
18
Simon Glassb8341f12017-07-29 11:35:15 -060019#ifndef CONFIG_AHCI
Simon Glassd97dc8a2016-05-01 11:36:11 -060020struct blk_desc sata_dev_desc[CONFIG_SYS_SATA_MAX_DEVICE];
Simon Glassb8341f12017-07-29 11:35:15 -060021#endif
Simon Glassd97dc8a2016-05-01 11:36:11 -060022
Simon Glassb8341f12017-07-29 11:35:15 -060023int sata_reset(struct udevice *dev)
24{
25 struct ahci_ops *ops = ahci_get_ops(dev);
26
27 if (!ops->reset)
28 return -ENOSYS;
29
30 return ops->reset(dev);
31}
32
33int sata_dm_port_status(struct udevice *dev, int port)
34{
35 struct ahci_ops *ops = ahci_get_ops(dev);
36
37 if (!ops->port_status)
38 return -ENOSYS;
39
40 return ops->port_status(dev, port);
41}
42
43int sata_scan(struct udevice *dev)
44{
45 struct ahci_ops *ops = ahci_get_ops(dev);
46
47 if (!ops->scan)
48 return -ENOSYS;
49
50 return ops->scan(dev);
51}
52
53#ifndef CONFIG_AHCI
Simon Glassd97dc8a2016-05-01 11:36:11 -060054#ifdef CONFIG_PARTITIONS
55struct blk_desc *sata_get_dev(int dev)
56{
57 return (dev < CONFIG_SYS_SATA_MAX_DEVICE) ? &sata_dev_desc[dev] : NULL;
58}
59#endif
Simon Glassb8341f12017-07-29 11:35:15 -060060#endif
Simon Glassd97dc8a2016-05-01 11:36:11 -060061
Simon Glassf5a14af2016-05-01 11:36:26 -060062static unsigned long sata_bread(struct udevice *dev, lbaint_t start,
63 lbaint_t blkcnt, void *dst)
64{
65 return -ENOSYS;
66}
67
68static unsigned long sata_bwrite(struct udevice *dev, lbaint_t start,
69 lbaint_t blkcnt, const void *buffer)
70{
71 return -ENOSYS;
72}
Simon Glassd97dc8a2016-05-01 11:36:11 -060073
Simon Glassb8341f12017-07-29 11:35:15 -060074#ifndef CONFIG_AHCI
Simon Glassd97dc8a2016-05-01 11:36:11 -060075int __sata_initialize(void)
76{
Tang Yuantianaa6ab902016-11-21 10:24:20 +080077 int rc, ret = -1;
Simon Glassd97dc8a2016-05-01 11:36:11 -060078 int i;
79
80 for (i = 0; i < CONFIG_SYS_SATA_MAX_DEVICE; i++) {
81 memset(&sata_dev_desc[i], 0, sizeof(struct blk_desc));
Simon Glass8149b152022-09-17 09:00:09 -060082 sata_dev_desc[i].uclass_id = UCLASS_AHCI;
Simon Glassd97dc8a2016-05-01 11:36:11 -060083 sata_dev_desc[i].devnum = i;
84 sata_dev_desc[i].part_type = PART_TYPE_UNKNOWN;
85 sata_dev_desc[i].type = DEV_TYPE_HARDDISK;
86 sata_dev_desc[i].lba = 0;
87 sata_dev_desc[i].blksz = 512;
88 sata_dev_desc[i].log2blksz = LOG2(sata_dev_desc[i].blksz);
Simon Glassd97dc8a2016-05-01 11:36:11 -060089 rc = init_sata(i);
90 if (!rc) {
91 rc = scan_sata(i);
92 if (!rc && sata_dev_desc[i].lba > 0 &&
Tang Yuantianaa6ab902016-11-21 10:24:20 +080093 sata_dev_desc[i].blksz > 0) {
Simon Glassd97dc8a2016-05-01 11:36:11 -060094 part_init(&sata_dev_desc[i]);
Tang Yuantianaa6ab902016-11-21 10:24:20 +080095 ret = i;
96 }
Simon Glassd97dc8a2016-05-01 11:36:11 -060097 }
98 }
99
Tang Yuantianaa6ab902016-11-21 10:24:20 +0800100 return ret;
Simon Glassd97dc8a2016-05-01 11:36:11 -0600101}
102int sata_initialize(void) __attribute__((weak, alias("__sata_initialize")));
103
104__weak int __sata_stop(void)
105{
106 int i, err = 0;
107
108 for (i = 0; i < CONFIG_SYS_SATA_MAX_DEVICE; i++)
109 err |= reset_sata(i);
110
111 if (err)
112 printf("Could not reset some SATA devices\n");
113
114 return err;
115}
116int sata_stop(void) __attribute__((weak, alias("__sata_stop")));
Simon Glassb8341f12017-07-29 11:35:15 -0600117#endif
Simon Glassd97dc8a2016-05-01 11:36:11 -0600118
Simon Glassf5a14af2016-05-01 11:36:26 -0600119static const struct blk_ops sata_blk_ops = {
120 .read = sata_bread,
121 .write = sata_bwrite,
122};
123
124U_BOOT_DRIVER(sata_blk) = {
125 .name = "sata_blk",
126 .id = UCLASS_BLK,
127 .ops = &sata_blk_ops,
128};