@@ -26,7 +26,7 @@ static void __init sbf_write(u8 v)
unsigned long flags;
if (sbf_port != -1) {
- if (!parity8(v))
+ if (!parity_odd(v))
v ^= SBF_PARITY;
printk(KERN_INFO "Simple Boot Flag at 0x%x set to 0x%x\n",
@@ -57,7 +57,7 @@ static bool __init sbf_value_valid(u8 v)
{
if (v & SBF_RESERVED) /* Reserved bits */
return false;
- if (!parity8(v))
+ if (!parity_odd(v))
return false;
return true;
@@ -298,7 +298,7 @@ static umode_t spd5118_is_visible(const void *_data, enum hwmon_sensor_types typ
*/
static bool spd5118_vendor_valid(u8 bank, u8 id)
{
- if (parity8(bank) == 0 || parity8(id) == 0)
+ if (!parity_odd(bank) || !parity_odd(id))
return false;
id &= 0x7f;
@@ -867,7 +867,7 @@ static int dw_i3c_master_daa(struct i3c_master_controller *m)
master->devs[pos].addr = ret;
last_addr = ret;
- ret |= parity8(ret) ? 0 : BIT(7);
+ ret |= parity_odd(ret) ? 0 : BIT(7);
writel(DEV_ADDR_TABLE_DYNAMIC_ADDR(ret),
master->regs +
@@ -889,7 +889,7 @@ static u32 prepare_rr0_dev_address(u32 addr)
ret |= (addr & GENMASK(9, 7)) << 6;
/* RR0[0] = ~XOR(addr[6:0]) */
- ret |= parity8(addr & 0x7f) ? 0 : BIT(0);
+ ret |= parity_odd(addr & 0x7f) ? 0 : BIT(0);
return ret;
}
@@ -114,7 +114,7 @@ static void hci_dat_v1_set_dynamic_addr(struct i3c_hci *hci,
dat_w0 = dat_w0_read(dat_idx);
dat_w0 &= ~(DAT_0_DYNAMIC_ADDRESS | DAT_0_DYNADDR_PARITY);
dat_w0 |= FIELD_PREP(DAT_0_DYNAMIC_ADDRESS, address) |
- (parity8(address) ? 0 : DAT_0_DYNADDR_PARITY);
+ (parity_odd(address) ? 0 : DAT_0_DYNADDR_PARITY);
dat_w0_write(dat_idx, dat_w0);
}
@@ -230,35 +230,40 @@ static inline int get_count_order_long(unsigned long l)
}
/**
- * parity8 - get the parity of an u8 value
- * @value: the value to be examined
+ * parity_odd - get the parity of an u64 value
+ * @val: the value to be examined
*
- * Determine the parity of the u8 argument.
+ * Determine the parity of the u64 argument.
*
* Returns:
- * 0 for even parity, 1 for odd parity
+ * false for even parity, true for odd parity
*
* Note: This function informs you about the current parity. Example to bail
* out when parity is odd:
*
- * if (parity8(val) == 1)
+ * if (parity_odd(val))
* return -EBADMSG;
*
* If you need to calculate a parity bit, you need to draw the conclusion from
* this result yourself. Example to enforce odd parity, parity bit is bit 7:
*
- * if (parity8(val) == 0)
+ * if (!parity_odd(val))
* val ^= BIT(7);
*/
-static inline int parity8(u8 val)
+#ifndef parity_odd
+static inline __attribute_const__ bool parity_odd(u64 val)
{
/*
* One explanation of this algorithm:
* https://funloop.org/codex/problem/parity/README.html
*/
+ val ^= val >> 32;
+ val ^= val >> 16;
+ val ^= val >> 8;
val ^= val >> 4;
return (0x6996 >> (val & 0xf)) & 1;
}
+#endif
/**
* __ffs64 - find first set bit in a 64 bit word