dwc_ahsata.h 373 B

12345678910111213141516
  1. /*
  2. * Copyright 2017 Google, Inc
  3. * Written by Simon Glass <sjg@chromium.org>
  4. *
  5. * SPDX-License-Identifier: GPL-2.0+
  6. */
  7. #ifndef __DWC_AHSATA_H__
  8. #define __DWC_AHSATA_H__
  9. int dwc_ahsata_bus_reset(struct udevice *dev);
  10. int dwc_ahsata_probe(struct udevice *dev);
  11. int dwc_ahsata_scan(struct udevice *dev);
  12. int dwc_ahsata_port_status(struct udevice *dev, int port);
  13. #endif