xref: /linux/rust/kernel/pci.rs (revision 880dec12a25890e8f5626f04c58d38003f1a5585)
1 // SPDX-License-Identifier: GPL-2.0
2 
3 //! Abstractions for the PCI bus.
4 //!
5 //! C header: [`include/linux/pci.h`](srctree/include/linux/pci.h)
6 
7 use crate::{
8     bindings, container_of, device,
9     device_id::RawDeviceId,
10     devres::Devres,
11     driver,
12     error::{to_result, Result},
13     io::Io,
14     io::IoRaw,
15     str::CStr,
16     types::{ARef, ForeignOwnable, Opaque},
17     ThisModule,
18 };
19 use core::{
20     marker::PhantomData,
21     ops::Deref,
22     ptr::{addr_of_mut, NonNull},
23 };
24 use kernel::prelude::*;
25 
26 /// An adapter for the registration of PCI drivers.
27 pub struct Adapter<T: Driver>(T);
28 
29 // SAFETY: A call to `unregister` for a given instance of `RegType` is guaranteed to be valid if
30 // a preceding call to `register` has been successful.
31 unsafe impl<T: Driver + 'static> driver::RegistrationOps for Adapter<T> {
32     type RegType = bindings::pci_driver;
33 
34     unsafe fn register(
35         pdrv: &Opaque<Self::RegType>,
36         name: &'static CStr,
37         module: &'static ThisModule,
38     ) -> Result {
39         // SAFETY: It's safe to set the fields of `struct pci_driver` on initialization.
40         unsafe {
41             (*pdrv.get()).name = name.as_char_ptr();
42             (*pdrv.get()).probe = Some(Self::probe_callback);
43             (*pdrv.get()).remove = Some(Self::remove_callback);
44             (*pdrv.get()).id_table = T::ID_TABLE.as_ptr();
45         }
46 
47         // SAFETY: `pdrv` is guaranteed to be a valid `RegType`.
48         to_result(unsafe {
49             bindings::__pci_register_driver(pdrv.get(), module.0, name.as_char_ptr())
50         })
51     }
52 
53     unsafe fn unregister(pdrv: &Opaque<Self::RegType>) {
54         // SAFETY: `pdrv` is guaranteed to be a valid `RegType`.
55         unsafe { bindings::pci_unregister_driver(pdrv.get()) }
56     }
57 }
58 
59 impl<T: Driver + 'static> Adapter<T> {
60     extern "C" fn probe_callback(
61         pdev: *mut bindings::pci_dev,
62         id: *const bindings::pci_device_id,
63     ) -> kernel::ffi::c_int {
64         // SAFETY: The PCI bus only ever calls the probe callback with a valid pointer to a
65         // `struct pci_dev`.
66         //
67         // INVARIANT: `pdev` is valid for the duration of `probe_callback()`.
68         let pdev = unsafe { &*pdev.cast::<Device<device::Core>>() };
69 
70         // SAFETY: `DeviceId` is a `#[repr(transparent)]` wrapper of `struct pci_device_id` and
71         // does not add additional invariants, so it's safe to transmute.
72         let id = unsafe { &*id.cast::<DeviceId>() };
73         let info = T::ID_TABLE.info(id.index());
74 
75         match T::probe(pdev, info) {
76             Ok(data) => {
77                 // Let the `struct pci_dev` own a reference of the driver's private data.
78                 // SAFETY: By the type invariant `pdev.as_raw` returns a valid pointer to a
79                 // `struct pci_dev`.
80                 unsafe { bindings::pci_set_drvdata(pdev.as_raw(), data.into_foreign() as _) };
81             }
82             Err(err) => return Error::to_errno(err),
83         }
84 
85         0
86     }
87 
88     extern "C" fn remove_callback(pdev: *mut bindings::pci_dev) {
89         // SAFETY: The PCI bus only ever calls the remove callback with a valid pointer to a
90         // `struct pci_dev`.
91         let ptr = unsafe { bindings::pci_get_drvdata(pdev) }.cast();
92 
93         // SAFETY: `remove_callback` is only ever called after a successful call to
94         // `probe_callback`, hence it's guaranteed that `ptr` points to a valid and initialized
95         // `KBox<T>` pointer created through `KBox::into_foreign`.
96         let _ = unsafe { KBox::<T>::from_foreign(ptr) };
97     }
98 }
99 
100 /// Declares a kernel module that exposes a single PCI driver.
101 ///
102 /// # Example
103 ///
104 ///```ignore
105 /// kernel::module_pci_driver! {
106 ///     type: MyDriver,
107 ///     name: "Module name",
108 ///     authors: ["Author name"],
109 ///     description: "Description",
110 ///     license: "GPL v2",
111 /// }
112 ///```
113 #[macro_export]
114 macro_rules! module_pci_driver {
115 ($($f:tt)*) => {
116     $crate::module_driver!(<T>, $crate::pci::Adapter<T>, { $($f)* });
117 };
118 }
119 
120 /// Abstraction for the PCI device ID structure ([`struct pci_device_id`]).
121 ///
122 /// [`struct pci_device_id`]: https://docs.kernel.org/PCI/pci.html#c.pci_device_id
123 #[repr(transparent)]
124 #[derive(Clone, Copy)]
125 pub struct DeviceId(bindings::pci_device_id);
126 
127 impl DeviceId {
128     const PCI_ANY_ID: u32 = !0;
129 
130     /// Equivalent to C's `PCI_DEVICE` macro.
131     ///
132     /// Create a new `pci::DeviceId` from a vendor and device ID number.
133     pub const fn from_id(vendor: u32, device: u32) -> Self {
134         Self(bindings::pci_device_id {
135             vendor,
136             device,
137             subvendor: DeviceId::PCI_ANY_ID,
138             subdevice: DeviceId::PCI_ANY_ID,
139             class: 0,
140             class_mask: 0,
141             driver_data: 0,
142             override_only: 0,
143         })
144     }
145 
146     /// Equivalent to C's `PCI_DEVICE_CLASS` macro.
147     ///
148     /// Create a new `pci::DeviceId` from a class number and mask.
149     pub const fn from_class(class: u32, class_mask: u32) -> Self {
150         Self(bindings::pci_device_id {
151             vendor: DeviceId::PCI_ANY_ID,
152             device: DeviceId::PCI_ANY_ID,
153             subvendor: DeviceId::PCI_ANY_ID,
154             subdevice: DeviceId::PCI_ANY_ID,
155             class,
156             class_mask,
157             driver_data: 0,
158             override_only: 0,
159         })
160     }
161 }
162 
163 // SAFETY:
164 // * `DeviceId` is a `#[repr(transparent)]` wrapper of `pci_device_id` and does not add
165 //   additional invariants, so it's safe to transmute to `RawType`.
166 // * `DRIVER_DATA_OFFSET` is the offset to the `driver_data` field.
167 unsafe impl RawDeviceId for DeviceId {
168     type RawType = bindings::pci_device_id;
169 
170     const DRIVER_DATA_OFFSET: usize = core::mem::offset_of!(bindings::pci_device_id, driver_data);
171 
172     fn index(&self) -> usize {
173         self.0.driver_data as _
174     }
175 }
176 
177 /// `IdTable` type for PCI.
178 pub type IdTable<T> = &'static dyn kernel::device_id::IdTable<DeviceId, T>;
179 
180 /// Create a PCI `IdTable` with its alias for modpost.
181 #[macro_export]
182 macro_rules! pci_device_table {
183     ($table_name:ident, $module_table_name:ident, $id_info_type: ty, $table_data: expr) => {
184         const $table_name: $crate::device_id::IdArray<
185             $crate::pci::DeviceId,
186             $id_info_type,
187             { $table_data.len() },
188         > = $crate::device_id::IdArray::new($table_data);
189 
190         $crate::module_device_table!("pci", $module_table_name, $table_name);
191     };
192 }
193 
194 /// The PCI driver trait.
195 ///
196 /// # Example
197 ///
198 ///```
199 /// # use kernel::{bindings, device::Core, pci};
200 ///
201 /// struct MyDriver;
202 ///
203 /// kernel::pci_device_table!(
204 ///     PCI_TABLE,
205 ///     MODULE_PCI_TABLE,
206 ///     <MyDriver as pci::Driver>::IdInfo,
207 ///     [
208 ///         (pci::DeviceId::from_id(bindings::PCI_VENDOR_ID_REDHAT, bindings::PCI_ANY_ID as _), ())
209 ///     ]
210 /// );
211 ///
212 /// impl pci::Driver for MyDriver {
213 ///     type IdInfo = ();
214 ///     const ID_TABLE: pci::IdTable<Self::IdInfo> = &PCI_TABLE;
215 ///
216 ///     fn probe(
217 ///         _pdev: &pci::Device<Core>,
218 ///         _id_info: &Self::IdInfo,
219 ///     ) -> Result<Pin<KBox<Self>>> {
220 ///         Err(ENODEV)
221 ///     }
222 /// }
223 ///```
224 /// Drivers must implement this trait in order to get a PCI driver registered. Please refer to the
225 /// `Adapter` documentation for an example.
226 pub trait Driver: Send {
227     /// The type holding information about each device id supported by the driver.
228     // TODO: Use `associated_type_defaults` once stabilized:
229     //
230     // ```
231     // type IdInfo: 'static = ();
232     // ```
233     type IdInfo: 'static;
234 
235     /// The table of device ids supported by the driver.
236     const ID_TABLE: IdTable<Self::IdInfo>;
237 
238     /// PCI driver probe.
239     ///
240     /// Called when a new platform device is added or discovered.
241     /// Implementers should attempt to initialize the device here.
242     fn probe(dev: &Device<device::Core>, id_info: &Self::IdInfo) -> Result<Pin<KBox<Self>>>;
243 }
244 
245 /// The PCI device representation.
246 ///
247 /// This structure represents the Rust abstraction for a C `struct pci_dev`. The implementation
248 /// abstracts the usage of an already existing C `struct pci_dev` within Rust code that we get
249 /// passed from the C side.
250 ///
251 /// # Invariants
252 ///
253 /// A [`Device`] instance represents a valid `struct pci_dev` created by the C portion of the
254 /// kernel.
255 #[repr(transparent)]
256 pub struct Device<Ctx: device::DeviceContext = device::Normal>(
257     Opaque<bindings::pci_dev>,
258     PhantomData<Ctx>,
259 );
260 
261 /// A PCI BAR to perform I/O-Operations on.
262 ///
263 /// # Invariants
264 ///
265 /// `Bar` always holds an `IoRaw` inststance that holds a valid pointer to the start of the I/O
266 /// memory mapped PCI bar and its size.
267 pub struct Bar<const SIZE: usize = 0> {
268     pdev: ARef<Device>,
269     io: IoRaw<SIZE>,
270     num: i32,
271 }
272 
273 impl<const SIZE: usize> Bar<SIZE> {
274     fn new(pdev: &Device, num: u32, name: &CStr) -> Result<Self> {
275         let len = pdev.resource_len(num)?;
276         if len == 0 {
277             return Err(ENOMEM);
278         }
279 
280         // Convert to `i32`, since that's what all the C bindings use.
281         let num = i32::try_from(num)?;
282 
283         // SAFETY:
284         // `pdev` is valid by the invariants of `Device`.
285         // `num` is checked for validity by a previous call to `Device::resource_len`.
286         // `name` is always valid.
287         let ret = unsafe { bindings::pci_request_region(pdev.as_raw(), num, name.as_char_ptr()) };
288         if ret != 0 {
289             return Err(EBUSY);
290         }
291 
292         // SAFETY:
293         // `pdev` is valid by the invariants of `Device`.
294         // `num` is checked for validity by a previous call to `Device::resource_len`.
295         // `name` is always valid.
296         let ioptr: usize = unsafe { bindings::pci_iomap(pdev.as_raw(), num, 0) } as usize;
297         if ioptr == 0 {
298             // SAFETY:
299             // `pdev` valid by the invariants of `Device`.
300             // `num` is checked for validity by a previous call to `Device::resource_len`.
301             unsafe { bindings::pci_release_region(pdev.as_raw(), num) };
302             return Err(ENOMEM);
303         }
304 
305         let io = match IoRaw::new(ioptr, len as usize) {
306             Ok(io) => io,
307             Err(err) => {
308                 // SAFETY:
309                 // `pdev` is valid by the invariants of `Device`.
310                 // `ioptr` is guaranteed to be the start of a valid I/O mapped memory region.
311                 // `num` is checked for validity by a previous call to `Device::resource_len`.
312                 unsafe { Self::do_release(pdev, ioptr, num) };
313                 return Err(err);
314             }
315         };
316 
317         Ok(Bar {
318             pdev: pdev.into(),
319             io,
320             num,
321         })
322     }
323 
324     /// # Safety
325     ///
326     /// `ioptr` must be a valid pointer to the memory mapped PCI bar number `num`.
327     unsafe fn do_release(pdev: &Device, ioptr: usize, num: i32) {
328         // SAFETY:
329         // `pdev` is valid by the invariants of `Device`.
330         // `ioptr` is valid by the safety requirements.
331         // `num` is valid by the safety requirements.
332         unsafe {
333             bindings::pci_iounmap(pdev.as_raw(), ioptr as _);
334             bindings::pci_release_region(pdev.as_raw(), num);
335         }
336     }
337 
338     fn release(&self) {
339         // SAFETY: The safety requirements are guaranteed by the type invariant of `self.pdev`.
340         unsafe { Self::do_release(&self.pdev, self.io.addr(), self.num) };
341     }
342 }
343 
344 impl Bar {
345     fn index_is_valid(index: u32) -> bool {
346         // A `struct pci_dev` owns an array of resources with at most `PCI_NUM_RESOURCES` entries.
347         index < bindings::PCI_NUM_RESOURCES
348     }
349 }
350 
351 impl<const SIZE: usize> Drop for Bar<SIZE> {
352     fn drop(&mut self) {
353         self.release();
354     }
355 }
356 
357 impl<const SIZE: usize> Deref for Bar<SIZE> {
358     type Target = Io<SIZE>;
359 
360     fn deref(&self) -> &Self::Target {
361         // SAFETY: By the type invariant of `Self`, the MMIO range in `self.io` is properly mapped.
362         unsafe { Io::from_raw(&self.io) }
363     }
364 }
365 
366 impl<Ctx: device::DeviceContext> Device<Ctx> {
367     fn as_raw(&self) -> *mut bindings::pci_dev {
368         self.0.get()
369     }
370 }
371 
372 impl Device {
373     /// Returns the PCI vendor ID.
374     pub fn vendor_id(&self) -> u16 {
375         // SAFETY: `self.as_raw` is a valid pointer to a `struct pci_dev`.
376         unsafe { (*self.as_raw()).vendor }
377     }
378 
379     /// Returns the PCI device ID.
380     pub fn device_id(&self) -> u16 {
381         // SAFETY: `self.as_raw` is a valid pointer to a `struct pci_dev`.
382         unsafe { (*self.as_raw()).device }
383     }
384 
385     /// Returns the size of the given PCI bar resource.
386     pub fn resource_len(&self, bar: u32) -> Result<bindings::resource_size_t> {
387         if !Bar::index_is_valid(bar) {
388             return Err(EINVAL);
389         }
390 
391         // SAFETY:
392         // - `bar` is a valid bar number, as guaranteed by the above call to `Bar::index_is_valid`,
393         // - by its type invariant `self.as_raw` is always a valid pointer to a `struct pci_dev`.
394         Ok(unsafe { bindings::pci_resource_len(self.as_raw(), bar.try_into()?) })
395     }
396 }
397 
398 impl Device<device::Bound> {
399     /// Mapps an entire PCI-BAR after performing a region-request on it. I/O operation bound checks
400     /// can be performed on compile time for offsets (plus the requested type size) < SIZE.
401     pub fn iomap_region_sized<'a, const SIZE: usize>(
402         &'a self,
403         bar: u32,
404         name: &'a CStr,
405     ) -> impl PinInit<Devres<Bar<SIZE>>, Error> + 'a {
406         Devres::new(self.as_ref(), Bar::<SIZE>::new(self, bar, name))
407     }
408 
409     /// Mapps an entire PCI-BAR after performing a region-request on it.
410     pub fn iomap_region<'a>(
411         &'a self,
412         bar: u32,
413         name: &'a CStr,
414     ) -> impl PinInit<Devres<Bar>, Error> + 'a {
415         self.iomap_region_sized::<0>(bar, name)
416     }
417 }
418 
419 impl Device<device::Core> {
420     /// Enable memory resources for this device.
421     pub fn enable_device_mem(&self) -> Result {
422         // SAFETY: `self.as_raw` is guaranteed to be a pointer to a valid `struct pci_dev`.
423         to_result(unsafe { bindings::pci_enable_device_mem(self.as_raw()) })
424     }
425 
426     /// Enable bus-mastering for this device.
427     pub fn set_master(&self) {
428         // SAFETY: `self.as_raw` is guaranteed to be a pointer to a valid `struct pci_dev`.
429         unsafe { bindings::pci_set_master(self.as_raw()) };
430     }
431 }
432 
433 // SAFETY: `Device` is a transparent wrapper of a type that doesn't depend on `Device`'s generic
434 // argument.
435 kernel::impl_device_context_deref!(unsafe { Device });
436 kernel::impl_device_context_into_aref!(Device);
437 
438 // SAFETY: Instances of `Device` are always reference-counted.
439 unsafe impl crate::types::AlwaysRefCounted for Device {
440     fn inc_ref(&self) {
441         // SAFETY: The existence of a shared reference guarantees that the refcount is non-zero.
442         unsafe { bindings::pci_dev_get(self.as_raw()) };
443     }
444 
445     unsafe fn dec_ref(obj: NonNull<Self>) {
446         // SAFETY: The safety requirements guarantee that the refcount is non-zero.
447         unsafe { bindings::pci_dev_put(obj.cast().as_ptr()) }
448     }
449 }
450 
451 impl<Ctx: device::DeviceContext> AsRef<device::Device<Ctx>> for Device<Ctx> {
452     fn as_ref(&self) -> &device::Device<Ctx> {
453         // SAFETY: By the type invariant of `Self`, `self.as_raw()` is a pointer to a valid
454         // `struct pci_dev`.
455         let dev = unsafe { addr_of_mut!((*self.as_raw()).dev) };
456 
457         // SAFETY: `dev` points to a valid `struct device`.
458         unsafe { device::Device::as_ref(dev) }
459     }
460 }
461 
462 impl<Ctx: device::DeviceContext> TryFrom<&device::Device<Ctx>> for &Device<Ctx> {
463     type Error = kernel::error::Error;
464 
465     fn try_from(dev: &device::Device<Ctx>) -> Result<Self, Self::Error> {
466         // SAFETY: By the type invariant of `Device`, `dev.as_raw()` is a valid pointer to a
467         // `struct device`.
468         if !unsafe { bindings::dev_is_pci(dev.as_raw()) } {
469             return Err(EINVAL);
470         }
471 
472         // SAFETY: We've just verified that the bus type of `dev` equals `bindings::pci_bus_type`,
473         // hence `dev` must be embedded in a valid `struct pci_dev` as guaranteed by the
474         // corresponding C code.
475         let pdev = unsafe { container_of!(dev.as_raw(), bindings::pci_dev, dev) };
476 
477         // SAFETY: `pdev` is a valid pointer to a `struct pci_dev`.
478         Ok(unsafe { &*pdev.cast() })
479     }
480 }
481 
482 // SAFETY: A `Device` is always reference-counted and can be released from any thread.
483 unsafe impl Send for Device {}
484 
485 // SAFETY: `Device` can be shared among threads because all methods of `Device`
486 // (i.e. `Device<Normal>) are thread safe.
487 unsafe impl Sync for Device {}
488