Linux Audio

Check our new training course

Loading...
v5.4
 1// SPDX-License-Identifier: GPL-2.0
 2/*
 3 * Intel MID platform PM support
 4 *
 5 * Copyright (C) 2016, Intel Corporation
 6 *
 7 * Author: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
 
 
 
 
 8 */
 9
10#include <linux/init.h>
11#include <linux/pci.h>
12
13#include <asm/cpu_device_id.h>
14#include <asm/intel-family.h>
15#include <asm/intel-mid.h>
16
17#include "pci.h"
18
19static bool mid_pci_power_manageable(struct pci_dev *dev)
20{
21	return true;
22}
23
24static int mid_pci_set_power_state(struct pci_dev *pdev, pci_power_t state)
25{
26	return intel_mid_pci_set_power_state(pdev, state);
27}
28
29static pci_power_t mid_pci_get_power_state(struct pci_dev *pdev)
30{
31	return intel_mid_pci_get_power_state(pdev);
32}
33
34static pci_power_t mid_pci_choose_state(struct pci_dev *pdev)
35{
36	return PCI_D3hot;
37}
38
39static int mid_pci_wakeup(struct pci_dev *dev, bool enable)
 
 
 
 
 
40{
41	return 0;
42}
43
44static bool mid_pci_need_resume(struct pci_dev *dev)
45{
46	return false;
47}
48
49static const struct pci_platform_pm_ops mid_pci_platform_pm = {
50	.is_manageable	= mid_pci_power_manageable,
51	.set_state	= mid_pci_set_power_state,
52	.get_state	= mid_pci_get_power_state,
53	.choose_state	= mid_pci_choose_state,
54	.set_wakeup	= mid_pci_wakeup,
 
55	.need_resume	= mid_pci_need_resume,
56};
57
58#define ICPU(model)	{ X86_VENDOR_INTEL, 6, model, X86_FEATURE_ANY, }
59
60/*
61 * This table should be in sync with the one in
62 * arch/x86/platform/intel-mid/pwr.c.
63 */
64static const struct x86_cpu_id lpss_cpu_ids[] = {
65	ICPU(INTEL_FAM6_ATOM_SALTWELL_MID),
66	ICPU(INTEL_FAM6_ATOM_SILVERMONT_MID),
67	{}
68};
69
70static int __init mid_pci_init(void)
71{
72	const struct x86_cpu_id *id;
73
74	id = x86_match_cpu(lpss_cpu_ids);
75	if (id)
76		pci_set_platform_pm(&mid_pci_platform_pm);
77	return 0;
78}
79arch_initcall(mid_pci_init);
v4.10.11
 
 1/*
 2 * Intel MID platform PM support
 3 *
 4 * Copyright (C) 2016, Intel Corporation
 5 *
 6 * Author: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
 7 *
 8 * This program is free software; you can redistribute it and/or modify it
 9 * under the terms and conditions of the GNU General Public License,
10 * version 2, as published by the Free Software Foundation.
11 */
12
13#include <linux/init.h>
14#include <linux/pci.h>
15
16#include <asm/cpu_device_id.h>
17#include <asm/intel-family.h>
18#include <asm/intel-mid.h>
19
20#include "pci.h"
21
22static bool mid_pci_power_manageable(struct pci_dev *dev)
23{
24	return true;
25}
26
27static int mid_pci_set_power_state(struct pci_dev *pdev, pci_power_t state)
28{
29	return intel_mid_pci_set_power_state(pdev, state);
30}
31
32static pci_power_t mid_pci_get_power_state(struct pci_dev *pdev)
33{
34	return intel_mid_pci_get_power_state(pdev);
35}
36
37static pci_power_t mid_pci_choose_state(struct pci_dev *pdev)
38{
39	return PCI_D3hot;
40}
41
42static int mid_pci_sleep_wake(struct pci_dev *dev, bool enable)
43{
44	return 0;
45}
46
47static int mid_pci_run_wake(struct pci_dev *dev, bool enable)
48{
49	return 0;
50}
51
52static bool mid_pci_need_resume(struct pci_dev *dev)
53{
54	return false;
55}
56
57static const struct pci_platform_pm_ops mid_pci_platform_pm = {
58	.is_manageable	= mid_pci_power_manageable,
59	.set_state	= mid_pci_set_power_state,
60	.get_state	= mid_pci_get_power_state,
61	.choose_state	= mid_pci_choose_state,
62	.sleep_wake	= mid_pci_sleep_wake,
63	.run_wake	= mid_pci_run_wake,
64	.need_resume	= mid_pci_need_resume,
65};
66
67#define ICPU(model)	{ X86_VENDOR_INTEL, 6, model, X86_FEATURE_ANY, }
68
69/*
70 * This table should be in sync with the one in
71 * arch/x86/platform/intel-mid/pwr.c.
72 */
73static const struct x86_cpu_id lpss_cpu_ids[] = {
74	ICPU(INTEL_FAM6_ATOM_PENWELL),
75	ICPU(INTEL_FAM6_ATOM_MERRIFIELD),
76	{}
77};
78
79static int __init mid_pci_init(void)
80{
81	const struct x86_cpu_id *id;
82
83	id = x86_match_cpu(lpss_cpu_ids);
84	if (id)
85		pci_set_platform_pm(&mid_pci_platform_pm);
86	return 0;
87}
88arch_initcall(mid_pci_init);