2019-05-21 01:08:10 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2010-03-05 01:06:06 +08:00
|
|
|
/*
|
|
|
|
* AHCI SATA platform driver
|
|
|
|
*
|
|
|
|
* Copyright 2004-2005 Red Hat, Inc.
|
|
|
|
* Jeff Garzik <jgarzik@pobox.com>
|
|
|
|
* Copyright 2010 MontaVista Software, LLC.
|
|
|
|
* Anton Vorontsov <avorontsov@ru.mvista.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _AHCI_PLATFORM_H
|
|
|
|
#define _AHCI_PLATFORM_H
|
|
|
|
|
2010-06-25 17:21:19 +08:00
|
|
|
#include <linux/compiler.h>
|
|
|
|
|
2010-03-05 01:06:06 +08:00
|
|
|
struct device;
|
|
|
|
struct ata_port_info;
|
2014-02-22 23:53:31 +08:00
|
|
|
struct ahci_host_priv;
|
2014-02-22 23:53:34 +08:00
|
|
|
struct platform_device;
|
2015-01-29 07:30:29 +08:00
|
|
|
struct scsi_host_template;
|
2010-03-05 01:06:06 +08:00
|
|
|
|
2014-02-22 23:53:31 +08:00
|
|
|
int ahci_platform_enable_clks(struct ahci_host_priv *hpriv);
|
|
|
|
void ahci_platform_disable_clks(struct ahci_host_priv *hpriv);
|
2015-01-15 22:09:37 +08:00
|
|
|
int ahci_platform_enable_regulators(struct ahci_host_priv *hpriv);
|
|
|
|
void ahci_platform_disable_regulators(struct ahci_host_priv *hpriv);
|
2014-02-22 23:53:33 +08:00
|
|
|
int ahci_platform_enable_resources(struct ahci_host_priv *hpriv);
|
|
|
|
void ahci_platform_disable_resources(struct ahci_host_priv *hpriv);
|
2014-02-22 23:53:34 +08:00
|
|
|
struct ahci_host_priv *ahci_platform_get_resources(
|
2018-08-22 20:13:01 +08:00
|
|
|
struct platform_device *pdev, unsigned int flags);
|
2014-02-22 23:53:34 +08:00
|
|
|
int ahci_platform_init_host(struct platform_device *pdev,
|
|
|
|
struct ahci_host_priv *hpriv,
|
2015-01-29 07:30:29 +08:00
|
|
|
const struct ata_port_info *pi_template,
|
|
|
|
struct scsi_host_template *sht);
|
2014-02-22 23:53:31 +08:00
|
|
|
|
2017-07-21 03:26:24 +08:00
|
|
|
void ahci_platform_shutdown(struct platform_device *pdev);
|
|
|
|
|
2014-02-22 23:53:35 +08:00
|
|
|
int ahci_platform_suspend_host(struct device *dev);
|
|
|
|
int ahci_platform_resume_host(struct device *dev);
|
|
|
|
int ahci_platform_suspend(struct device *dev);
|
|
|
|
int ahci_platform_resume(struct device *dev);
|
|
|
|
|
2018-08-22 20:13:02 +08:00
|
|
|
#define AHCI_PLATFORM_GET_RESETS 0x01
|
|
|
|
|
2010-03-05 01:06:06 +08:00
|
|
|
#endif /* _AHCI_PLATFORM_H */
|