search for: has_calibration

Displaying 7 results from an estimated 7 matches for "has_calibration".

2014 Mar 24
2
[PATCH 02/12] drm/nouveau/timer: skip calibration on GK20A
...alibration registers */ > + if (device->chipset == 0xea) > + goto skip_clk_init; I'm concerned that this won't scale in the future. Perhaps a better solution would be to add a "flags" or "features" field to struct nouveau_device along with feature bits such as HAS_CALIBRATION or similar. That way we don't have to touch this code for every new future Tegra chip. Unless perhaps if there's a reason to expect things to change in newer generations. Thierry -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: applic...
2014 Apr 11
2
[PATCH 02/12] drm/nouveau/timer: skip calibration on GK20A
...== 0xea) >>> + goto skip_clk_init; >> >> I'm concerned that this won't scale in the future. Perhaps a better >> solution would be to add a "flags" or "features" field to struct >> nouveau_device along with feature bits such as HAS_CALIBRATION or >> similar. >> >> That way we don't have to touch this code for every new future Tegra >> chip. Unless perhaps if there's a reason to expect things to change in >> newer generations. > I've already handled this in a slightly different way in the tree...
2014 Apr 11
2
[PATCH 02/12] drm/nouveau/timer: skip calibration on GK20A
...goto skip_clk_init; >>>> >>>> I'm concerned that this won't scale in the future. Perhaps a better >>>> solution would be to add a "flags" or "features" field to struct >>>> nouveau_device along with feature bits such as HAS_CALIBRATION or >>>> similar. >>>> >>>> That way we don't have to touch this code for every new future Tegra >>>> chip. Unless perhaps if there's a reason to expect things to change in >>>> newer generations. >>> I've already handl...
2014 Mar 26
0
[PATCH 02/12] drm/nouveau/timer: skip calibration on GK20A
...(device->chipset == 0xea) >> + goto skip_clk_init; > > I'm concerned that this won't scale in the future. Perhaps a better > solution would be to add a "flags" or "features" field to struct > nouveau_device along with feature bits such as HAS_CALIBRATION or > similar. > > That way we don't have to touch this code for every new future Tegra > chip. Unless perhaps if there's a reason to expect things to change in > newer generations. I've already handled this in a slightly different way in the tree I'd previously pointe...
2014 Apr 11
0
[PATCH 02/12] drm/nouveau/timer: skip calibration on GK20A
...;> + goto skip_clk_init; >>> >>> I'm concerned that this won't scale in the future. Perhaps a better >>> solution would be to add a "flags" or "features" field to struct >>> nouveau_device along with feature bits such as HAS_CALIBRATION or >>> similar. >>> >>> That way we don't have to touch this code for every new future Tegra >>> chip. Unless perhaps if there's a reason to expect things to change in >>> newer generations. >> I've already handled this in a slightly di...
2014 Apr 14
0
[PATCH 02/12] drm/nouveau/timer: skip calibration on GK20A
...gt;> >>>>> >>>>> I'm concerned that this won't scale in the future. Perhaps a better >>>>> solution would be to add a "flags" or "features" field to struct >>>>> nouveau_device along with feature bits such as HAS_CALIBRATION or >>>>> similar. >>>>> >>>>> That way we don't have to touch this code for every new future Tegra >>>>> chip. Unless perhaps if there's a reason to expect things to change in >>>>> newer generations. >>>&gt...
2014 Mar 24
27
[PATCH 00/12] drm/nouveau: support for GK20A, cont'd
Hi everyone, Here is the second batch of patches to add GK20A support to Nouveau. This time we are adding the actual chip support, and this series brings the driver to a point where a slightly-tweaked Mesa successfully runs shaders and renders triangles on GBM! Many thanks to Thierry Reding and the people on the #nouveau IRC channel for their help without which we would not have reached this