regmap: cache: Add 64-bit mode support
Since the mmio has support the 64-bit has been supported for the 64-bit platform, so should the regcache core too. Signed-off-by: Xiubo Li <lixiubo@cmss.chinamobile.com> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
2fd6902ed7
commit
8b7663de6e
|
@ -551,6 +551,14 @@ bool regcache_set_val(struct regmap *map, void *base, unsigned int idx,
|
||||||
cache[idx] = val;
|
cache[idx] = val;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
#ifdef CONFIG_64BIT
|
||||||
|
case 8: {
|
||||||
|
u64 *cache = base;
|
||||||
|
|
||||||
|
cache[idx] = val;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
default:
|
default:
|
||||||
BUG();
|
BUG();
|
||||||
}
|
}
|
||||||
|
@ -584,6 +592,13 @@ unsigned int regcache_get_val(struct regmap *map, const void *base,
|
||||||
|
|
||||||
return cache[idx];
|
return cache[idx];
|
||||||
}
|
}
|
||||||
|
#ifdef CONFIG_64BIT
|
||||||
|
case 8: {
|
||||||
|
const u64 *cache = base;
|
||||||
|
|
||||||
|
return cache[idx];
|
||||||
|
}
|
||||||
|
#endif
|
||||||
default:
|
default:
|
||||||
BUG();
|
BUG();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue