pm.h 478 B

1234567891011121314151617181920
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright 2000 Deep Blue Solutions Ltd
  4. * Copyright 2004 ARM Limited
  5. * Copyright 2008 Cavium Networks
  6. */
  7. #ifndef __CNS3XXX_PM_H
  8. #define __CNS3XXX_PM_H
  9. #include <linux/atomic.h>
  10. void cns3xxx_pwr_clk_en(unsigned int block);
  11. void cns3xxx_pwr_clk_dis(unsigned int block);
  12. void cns3xxx_pwr_power_up(unsigned int block);
  13. void cns3xxx_pwr_power_down(unsigned int block);
  14. extern atomic_t usb_pwr_ref;
  15. #endif /* __CNS3XXX_PM_H */