Displaying 3 results from an estimated 3 matches for "flush_en".
Did you mean:
flush_fn
2015 Jan 06
2
[PATCH 2/11] memory: tegra: add mc flush support
...> + return -EINVAL;
> +}
> +EXPORT_SYMBOL(tegra_mc_flush);
Like Lucas already mentioned in response to another patch, having a
boolean "enable" argument is suboptimal here. Now according to
documentation the proper reset sequence for clients is something like
this:
1) set the FLUSH_ENABLE bit for the client
2) poll the FLUSH_DONE bit for the client
3) assert reset to the client using the CAR
4) deassert reset to the client using the CAR
5) clear the FLUSH_ENABLE bit for the client
This is really inconvenient because we can't flush the client using a
single operation. So...
2015 Jan 07
0
[PATCH 2/11] memory: tegra: add mc flush support
...; +EXPORT_SYMBOL(tegra_mc_flush);
>
> Like Lucas already mentioned in response to another patch, having a
> boolean "enable" argument is suboptimal here. Now according to
> documentation the proper reset sequence for clients is something like
> this:
>
> 1) set the FLUSH_ENABLE bit for the client
> 2) poll the FLUSH_DONE bit for the client
> 3) assert reset to the client using the CAR
> 4) deassert reset to the client using the CAR
> 5) clear the FLUSH_ENABLE bit for the client
>
Do we ever need to do this outside a powergating or railgating seque...
2014 Dec 23
18
[PATCH 0/11] Add suspend/resume support for GK20A
Hi,
This series includes some pieces of fixes to complete the GK20A power
on/off sequences and add the suspend/resume support.
The patches 1/11 - 4/11 are based on the linux-next-20141219.
The patches 5/11 - 11/11 are based on the branch "linux-3.19" of Ben Skeggs's
tree (http://cgit.freedesktop.org/~darktama/nouveau).
Thanks,
Vince
Vince Hsu (4): (linux-next-20141219)
ARM: