/* * mtu3_dr.h - dual role switch and host glue layer header * * Copyright (C) 2016 MediaTek Inc. * * Author: Chunfeng Yun * * This software is licensed under the terms of the GNU General Public * License version 2, as published by the Free Software Foundation, and * may be copied, distributed, and modified under those terms. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * */ #ifndef _MTU3_DR_H_ #define _MTU3_DR_H_ #if IS_ENABLED(CONFIG_USB_MTU3_HOST) || IS_ENABLED(CONFIG_USB_MTU3_DUAL_ROLE) int ssusb_host_init(struct ssusb_mtk *ssusb, struct device_node *parent_dn); void ssusb_host_exit(struct ssusb_mtk *ssusb); int ssusb_wakeup_of_property_parse(struct ssusb_mtk *ssusb, struct device_node *dn); int ssusb_host_enable(struct ssusb_mtk *ssusb); int ssusb_host_disable(struct ssusb_mtk *ssusb, bool suspend); int ssusb_wakeup_enable(struct ssusb_mtk *ssusb); void ssusb_wakeup_disable(struct ssusb_mtk *ssusb); #else static inline int ssusb_host_init(struct ssusb_mtk *ssusb, struct device_node *parent_dn) { return 0; } static inline void ssusb_host_exit(struct ssusb_mtk *ssusb) {} static inline int ssusb_wakeup_of_property_parse( struct ssusb_mtk *ssusb, struct device_node *dn) { return 0; } static inline int ssusb_host_enable(struct ssusb_mtk *ssusb) { return 0; } static inline int ssusb_host_disable(struct ssusb_mtk *ssusb, bool suspend) { return 0; } static inline int ssusb_wakeup_enable(struct ssusb_mtk *ssusb) { return 0; } static inline void ssusb_wakeup_disable(struct ssusb_mtk *ssusb) {} #endif #if IS_ENABLED(CONFIG_USB_MTU3_GADGET) || IS_ENABLED(CONFIG_USB_MTU3_DUAL_ROLE) int ssusb_gadget_init(struct ssusb_mtk *ssusb); void ssusb_gadget_exit(struct ssusb_mtk *ssusb); #else static inline int ssusb_gadget_init(struct ssusb_mtk *ssusb) { return 0; } static inline void ssusb_gadget_exit(struct ssusb_mtk *ssusb) {} #endif #if IS_ENABLED(CONFIG_USB_MTU3_DUAL_ROLE) int ssusb_otg_switch_init(struct ssusb_mtk *ssusb); void ssusb_otg_switch_exit(struct ssusb_mtk *ssusb); int ssusb_set_vbus(struct otg_switch_mtk *otg_sx, int is_on); #else static inline int ssusb_otg_switch_init(struct ssusb_mtk *ssusb) { return 0; } static inline void ssusb_otg_switch_exit(struct ssusb_mtk *ssusb) {} static inline int ssusb_set_vbus(struct otg_switch_mtk *otg_sx, int is_on) { return 0; } #endif #endif /* _MTU3_DR_H_ */ 915f4a30b04b1f'/>
path: root/tools/testing/selftests/nsfs
diff options
context:
space:
mode:
authorMarkus Mayer <mmayer@broadcom.com>2016-12-19 12:10:28 -0800
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2017-01-27 11:43:49 +0100
commit3c223c19aea85d3dda1416c187915f4a30b04b1f (patch)
tree2d2021f8161db3e9ed38b9a966a225b66dff8e58 /tools/testing/selftests/nsfs
parent9b02c54bc951fca884ba5719f42a27e8240965bf (diff)
cpufreq: brcmstb-avs-cpufreq: properly retrieve P-state upon suspend
The AVS GET_PMAP command does return a P-state along with the P-map information. However, that P-state is the initial P-state when the P-map was first downloaded to AVS. It is *not* the current P-state. Therefore, we explicitly retrieve the P-state using the GET_PSTATE command. Signed-off-by: Markus Mayer <mmayer@broadcom.com> Acked-by: Viresh Kumar <viresh.kumar@linaro.org> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'tools/testing/selftests/nsfs')