Lines Matching refs:u32
95 pub fn phy_id(&self) -> u32 { in phy_id() argument
162 pub fn set_speed(&mut self, speed: u32) { in set_speed() argument
297 pub const IS_INTERNAL: u32 = bindings::PHY_IS_INTERNAL;
299 pub const RST_AFTER_CLK_EN: u32 = bindings::PHY_RST_AFTER_CLK_EN;
301 pub const POLL_CABLE_TEST: u32 = bindings::PHY_POLL_CABLE_TEST;
303 pub const ALWAYS_CALL_SUSPEND: u32 = bindings::PHY_ALWAYS_CALL_SUSPEND;
572 const FLAGS: u32 = 0;
692 pub const fn new_with_exact_mask(id: u32) -> Self { in new_with_exact_mask()
700 pub const fn new_with_model_mask(id: u32) -> Self { in new_with_model_mask()
708 pub const fn new_with_vendor_mask(id: u32) -> Self { in new_with_vendor_mask()
716 pub const fn new_with_custom_mask(id: u32, mask: u32) -> Self { in new_with_custom_mask() argument
729 pub const fn id(&self) -> u32 { in id() argument
734 pub const fn mask_as_int(&self) -> u32 { in mask_as_int() argument
755 Custom(u32),
759 const MASK_EXACT: u32 = !0;
760 const MASK_MODEL: u32 = !0 << 4;
761 const MASK_VENDOR: u32 = !0 << 10;
763 const fn as_int(&self) -> u32 { in as_int() argument