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