drivers/pci/pci-mid.c
Source file repositories/reference/linux-study-clean/drivers/pci/pci-mid.c
File Facts
- System
- Linux kernel
- Corpus path
drivers/pci/pci-mid.c- Extension
.c- Size
- 1115 bytes
- Lines
- 57
- Domain
- Representative Device Path
- Bucket
- PCIe NVMe Storage Path
- Inferred role
- Representative Device Path: implementation source
- Status
- source implementation candidate
Why This File Exists
Part of the selected hardware vertical slice: PCI discovery, driver binding, NVMe queues, block requests, DMA, interrupts, and completion.
- Part of the selected hardware vertical slice: PCI discovery, driver binding, NVMe queues, block requests, DMA, interrupts, and completion.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/init.hlinux/pci.hasm/cpu_device_id.hasm/intel-family.hasm/intel-mid.hpci.h
Detected Declarations
function pci_use_mid_pmfunction mid_pci_set_power_statefunction mid_pci_get_power_statefunction mid_pci_init
Annotated Snippet
// SPDX-License-Identifier: GPL-2.0
/*
* Intel MID platform PM support
*
* Copyright (C) 2016, Intel Corporation
*
* Author: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
*/
#include <linux/init.h>
#include <linux/pci.h>
#include <asm/cpu_device_id.h>
#include <asm/intel-family.h>
#include <asm/intel-mid.h>
#include "pci.h"
static bool pci_mid_pm_enabled __read_mostly;
bool pci_use_mid_pm(void)
{
return pci_mid_pm_enabled;
}
int mid_pci_set_power_state(struct pci_dev *pdev, pci_power_t state)
{
return intel_mid_pci_set_power_state(pdev, state);
}
pci_power_t mid_pci_get_power_state(struct pci_dev *pdev)
{
return intel_mid_pci_get_power_state(pdev);
}
/*
* This table should be in sync with the one in
* arch/x86/platform/intel-mid/pwr.c.
*/
static const struct x86_cpu_id lpss_cpu_ids[] = {
X86_MATCH_VFM(INTEL_ATOM_SALTWELL_MID, NULL),
X86_MATCH_VFM(INTEL_ATOM_SILVERMONT_MID, NULL),
{}
};
static int __init mid_pci_init(void)
{
const struct x86_cpu_id *id;
id = x86_match_cpu(lpss_cpu_ids);
if (id)
pci_mid_pm_enabled = true;
return 0;
}
arch_initcall(mid_pci_init);
Annotation
- Immediate include surface: `linux/init.h`, `linux/pci.h`, `asm/cpu_device_id.h`, `asm/intel-family.h`, `asm/intel-mid.h`, `pci.h`.
- Detected declarations: `function pci_use_mid_pm`, `function mid_pci_set_power_state`, `function mid_pci_get_power_state`, `function mid_pci_init`.
- Atlas domain: Representative Device Path / PCIe NVMe Storage Path.
- Implementation status: source implementation candidate.
Implementation Notes
- This generated page is the file-by-file coverage layer; curated subsystem chapters should link here when they synthesize a multi-file control flow.
- Core OS pages should be promoted from atlas-only to deep-reviewed when they explain data structures, invariants, locking, lifecycle, and C implementation snippets.
- Driver-family pages are intentionally pattern-oriented unless they are part of the selected PCIe/NVMe representative device path.