xref: /linux/rust/kernel/pci.rs (revision 260f6f4fda93c8485c8037865c941b42b9cba5d2)
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, RawDeviceIdIndex},
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: `DeviceId` is a `#[repr(transparent)]` wrapper of `pci_device_id` and does not add
163 // additional invariants, so it's safe to transmute to `RawType`.
164 unsafe impl RawDeviceId for DeviceId {
165     type RawType = bindings::pci_device_id;
166 }
167 
168 // SAFETY: `DRIVER_DATA_OFFSET` is the offset to the `driver_data` field.
169 unsafe impl RawDeviceIdIndex for DeviceId {
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     /// Platform driver unbind.
245     ///
246     /// Called when a [`Device`] is unbound from its bound [`Driver`]. Implementing this callback
247     /// is optional.
248     ///
249     /// This callback serves as a place for drivers to perform teardown operations that require a
250     /// `&Device<Core>` or `&Device<Bound>` reference. For instance, drivers may try to perform I/O
251     /// operations to gracefully tear down the device.
252     ///
253     /// Otherwise, release operations for driver resources should be performed in `Self::drop`.
254     fn unbind(dev: &Device<device::Core>, this: Pin<&Self>) {
255         let _ = (dev, this);
256     }
257 }
258 
259 /// The PCI device representation.
260 ///
261 /// This structure represents the Rust abstraction for a C `struct pci_dev`. The implementation
262 /// abstracts the usage of an already existing C `struct pci_dev` within Rust code that we get
263 /// passed from the C side.
264 ///
265 /// # Invariants
266 ///
267 /// A [`Device`] instance represents a valid `struct pci_dev` created by the C portion of the
268 /// kernel.
269 #[repr(transparent)]
270 pub struct Device<Ctx: device::DeviceContext = device::Normal>(
271     Opaque<bindings::pci_dev>,
272     PhantomData<Ctx>,
273 );
274 
275 /// A PCI BAR to perform I/O-Operations on.
276 ///
277 /// # Invariants
278 ///
279 /// `Bar` always holds an `IoRaw` inststance that holds a valid pointer to the start of the I/O
280 /// memory mapped PCI bar and its size.
281 pub struct Bar<const SIZE: usize = 0> {
282     pdev: ARef<Device>,
283     io: IoRaw<SIZE>,
284     num: i32,
285 }
286 
287 impl<const SIZE: usize> Bar<SIZE> {
288     fn new(pdev: &Device, num: u32, name: &CStr) -> Result<Self> {
289         let len = pdev.resource_len(num)?;
290         if len == 0 {
291             return Err(ENOMEM);
292         }
293 
294         // Convert to `i32`, since that's what all the C bindings use.
295         let num = i32::try_from(num)?;
296 
297         // SAFETY:
298         // `pdev` is valid by the invariants of `Device`.
299         // `num` is checked for validity by a previous call to `Device::resource_len`.
300         // `name` is always valid.
301         let ret = unsafe { bindings::pci_request_region(pdev.as_raw(), num, name.as_char_ptr()) };
302         if ret != 0 {
303             return Err(EBUSY);
304         }
305 
306         // SAFETY:
307         // `pdev` is valid by the invariants of `Device`.
308         // `num` is checked for validity by a previous call to `Device::resource_len`.
309         // `name` is always valid.
310         let ioptr: usize = unsafe { bindings::pci_iomap(pdev.as_raw(), num, 0) } as usize;
311         if ioptr == 0 {
312             // SAFETY:
313             // `pdev` valid by the invariants of `Device`.
314             // `num` is checked for validity by a previous call to `Device::resource_len`.
315             unsafe { bindings::pci_release_region(pdev.as_raw(), num) };
316             return Err(ENOMEM);
317         }
318 
319         let io = match IoRaw::new(ioptr, len as usize) {
320             Ok(io) => io,
321             Err(err) => {
322                 // SAFETY:
323                 // `pdev` is valid by the invariants of `Device`.
324                 // `ioptr` is guaranteed to be the start of a valid I/O mapped memory region.
325                 // `num` is checked for validity by a previous call to `Device::resource_len`.
326                 unsafe { Self::do_release(pdev, ioptr, num) };
327                 return Err(err);
328             }
329         };
330 
331         Ok(Bar {
332             pdev: pdev.into(),
333             io,
334             num,
335         })
336     }
337 
338     /// # Safety
339     ///
340     /// `ioptr` must be a valid pointer to the memory mapped PCI bar number `num`.
341     unsafe fn do_release(pdev: &Device, ioptr: usize, num: i32) {
342         // SAFETY:
343         // `pdev` is valid by the invariants of `Device`.
344         // `ioptr` is valid by the safety requirements.
345         // `num` is valid by the safety requirements.
346         unsafe {
347             bindings::pci_iounmap(pdev.as_raw(), ioptr as _);
348             bindings::pci_release_region(pdev.as_raw(), num);
349         }
350     }
351 
352     fn release(&self) {
353         // SAFETY: The safety requirements are guaranteed by the type invariant of `self.pdev`.
354         unsafe { Self::do_release(&self.pdev, self.io.addr(), self.num) };
355     }
356 }
357 
358 impl Bar {
359     fn index_is_valid(index: u32) -> bool {
360         // A `struct pci_dev` owns an array of resources with at most `PCI_NUM_RESOURCES` entries.
361         index < bindings::PCI_NUM_RESOURCES
362     }
363 }
364 
365 impl<const SIZE: usize> Drop for Bar<SIZE> {
366     fn drop(&mut self) {
367         self.release();
368     }
369 }
370 
371 impl<const SIZE: usize> Deref for Bar<SIZE> {
372     type Target = Io<SIZE>;
373 
374     fn deref(&self) -> &Self::Target {
375         // SAFETY: By the type invariant of `Self`, the MMIO range in `self.io` is properly mapped.
376         unsafe { Io::from_raw(&self.io) }
377     }
378 }
379 
380 impl<Ctx: device::DeviceContext> Device<Ctx> {
381     fn as_raw(&self) -> *mut bindings::pci_dev {
382         self.0.get()
383     }
384 }
385 
386 impl Device {
387     /// Returns the PCI vendor ID.
388     pub fn vendor_id(&self) -> u16 {
389         // SAFETY: `self.as_raw` is a valid pointer to a `struct pci_dev`.
390         unsafe { (*self.as_raw()).vendor }
391     }
392 
393     /// Returns the PCI device ID.
394     pub fn device_id(&self) -> u16 {
395         // SAFETY: `self.as_raw` is a valid pointer to a `struct pci_dev`.
396         unsafe { (*self.as_raw()).device }
397     }
398 
399     /// Returns the size of the given PCI bar resource.
400     pub fn resource_len(&self, bar: u32) -> Result<bindings::resource_size_t> {
401         if !Bar::index_is_valid(bar) {
402             return Err(EINVAL);
403         }
404 
405         // SAFETY:
406         // - `bar` is a valid bar number, as guaranteed by the above call to `Bar::index_is_valid`,
407         // - by its type invariant `self.as_raw` is always a valid pointer to a `struct pci_dev`.
408         Ok(unsafe { bindings::pci_resource_len(self.as_raw(), bar.try_into()?) })
409     }
410 }
411 
412 impl Device<device::Bound> {
413     /// Mapps an entire PCI-BAR after performing a region-request on it. I/O operation bound checks
414     /// can be performed on compile time for offsets (plus the requested type size) < SIZE.
415     pub fn iomap_region_sized<'a, const SIZE: usize>(
416         &'a self,
417         bar: u32,
418         name: &'a CStr,
419     ) -> impl PinInit<Devres<Bar<SIZE>>, Error> + 'a {
420         Devres::new(self.as_ref(), Bar::<SIZE>::new(self, bar, name))
421     }
422 
423     /// Mapps an entire PCI-BAR after performing a region-request on it.
424     pub fn iomap_region<'a>(
425         &'a self,
426         bar: u32,
427         name: &'a CStr,
428     ) -> impl PinInit<Devres<Bar>, Error> + 'a {
429         self.iomap_region_sized::<0>(bar, name)
430     }
431 }
432 
433 impl Device<device::Core> {
434     /// Enable memory resources for this device.
435     pub fn enable_device_mem(&self) -> Result {
436         // SAFETY: `self.as_raw` is guaranteed to be a pointer to a valid `struct pci_dev`.
437         to_result(unsafe { bindings::pci_enable_device_mem(self.as_raw()) })
438     }
439 
440     /// Enable bus-mastering for this device.
441     pub fn set_master(&self) {
442         // SAFETY: `self.as_raw` is guaranteed to be a pointer to a valid `struct pci_dev`.
443         unsafe { bindings::pci_set_master(self.as_raw()) };
444     }
445 }
446 
447 // SAFETY: `Device` is a transparent wrapper of a type that doesn't depend on `Device`'s generic
448 // argument.
449 kernel::impl_device_context_deref!(unsafe { Device });
450 kernel::impl_device_context_into_aref!(Device);
451 
452 impl crate::dma::Device for Device<device::Core> {}
453 
454 // SAFETY: Instances of `Device` are always reference-counted.
455 unsafe impl crate::types::AlwaysRefCounted for Device {
456     fn inc_ref(&self) {
457         // SAFETY: The existence of a shared reference guarantees that the refcount is non-zero.
458         unsafe { bindings::pci_dev_get(self.as_raw()) };
459     }
460 
461     unsafe fn dec_ref(obj: NonNull<Self>) {
462         // SAFETY: The safety requirements guarantee that the refcount is non-zero.
463         unsafe { bindings::pci_dev_put(obj.cast().as_ptr()) }
464     }
465 }
466 
467 impl<Ctx: device::DeviceContext> AsRef<device::Device<Ctx>> for Device<Ctx> {
468     fn as_ref(&self) -> &device::Device<Ctx> {
469         // SAFETY: By the type invariant of `Self`, `self.as_raw()` is a pointer to a valid
470         // `struct pci_dev`.
471         let dev = unsafe { addr_of_mut!((*self.as_raw()).dev) };
472 
473         // SAFETY: `dev` points to a valid `struct device`.
474         unsafe { device::Device::from_raw(dev) }
475     }
476 }
477 
478 impl<Ctx: device::DeviceContext> TryFrom<&device::Device<Ctx>> for &Device<Ctx> {
479     type Error = kernel::error::Error;
480 
481     fn try_from(dev: &device::Device<Ctx>) -> Result<Self, Self::Error> {
482         // SAFETY: By the type invariant of `Device`, `dev.as_raw()` is a valid pointer to a
483         // `struct device`.
484         if !unsafe { bindings::dev_is_pci(dev.as_raw()) } {
485             return Err(EINVAL);
486         }
487 
488         // SAFETY: We've just verified that the bus type of `dev` equals `bindings::pci_bus_type`,
489         // hence `dev` must be embedded in a valid `struct pci_dev` as guaranteed by the
490         // corresponding C code.
491         let pdev = unsafe { container_of!(dev.as_raw(), bindings::pci_dev, dev) };
492 
493         // SAFETY: `pdev` is a valid pointer to a `struct pci_dev`.
494         Ok(unsafe { &*pdev.cast() })
495     }
496 }
497 
498 // SAFETY: A `Device` is always reference-counted and can be released from any thread.
499 unsafe impl Send for Device {}
500 
501 // SAFETY: `Device` can be shared among threads because all methods of `Device`
502 // (i.e. `Device<Normal>) are thread safe.
503 unsafe impl Sync for Device {}
504