search for: 756000

Displaying 15 results from an estimated 15 matches for "756000".

Did you mean: 256000
2007 Mar 28
0
A new Open Source .Net bassed Vorbis/Theora Library and Sample Player
Hi all, My company KISS Intelligent Systems is developing a content distribution platform. Part of this requires the client software to play audio and video. When we started we looked around and couldn't find anything that could quite do what we needed, so we wrote our own. We have decided to open source (LGPL) the library we created. The library is designed to be cross platform, however we
2014 Nov 28
2
[RESEND PATCH nouveau 3/3] volt: add support for GK20A
...{ > .base = { > .domain[nv_clk_src_gpc] = 684000, > + .voltage = 10, > }, > }, > { > .base = { > .domain[nv_clk_src_gpc] = 708000, > + .voltage = 11, > }, > }, > { > .base = { > .domain[nv_clk_src_gpc] = 756000, > + .voltage = 12, > }, > }, > { > .base = { > .domain[nv_clk_src_gpc] = 804000, > + .voltage = 13, > }, > }, > { > .base = { > .domain[nv_clk_src_gpc] = 852000, > + .voltage = 14, > }, > }, > };...
2014 Nov 28
2
[RESEND PATCH nouveau 3/3] volt: add support for GK20A
...; { >>> .base = { >>> .domain[nv_clk_src_gpc] = 708000, >>> + .voltage = 11, >>> }, >>> }, >>> { >>> .base = { >>> .domain[nv_clk_src_gpc] = 756000, >>> + .voltage = 12, >>> }, >>> }, >>> { >>> .base = { >>> .domain[nv_clk_src_gpc] = 804000, >>> + .voltage = 13, >>> }, >>> }, >&...
2014 Nov 29
0
[RESEND PATCH nouveau 3/3] volt: add support for GK20A
....base = { >>>> .domain[nv_clk_src_gpc] = 708000, >>>> + .voltage = 11, >>>> }, >>>> }, >>>> { >>>> .base = { >>>> .domain[nv_clk_src_gpc] = 756000, >>>> + .voltage = 12, >>>> }, >>>> }, >>>> { >>>> .base = { >>>> .domain[nv_clk_src_gpc] = 804000, >>>> + .voltage = 13, >>>>...
2014 Nov 28
0
[PATCH 2/2] volt: add support for GK20A
...{ .base = { .domain[nv_clk_src_gpc] = 648000, + .voltage = 9, }, }, { .base = { .domain[nv_clk_src_gpc] = 684000, + .voltage = 10, }, }, { .base = { .domain[nv_clk_src_gpc] = 708000, + .voltage = 11, }, }, { .base = { .domain[nv_clk_src_gpc] = 756000, + .voltage = 12, }, }, { .base = { .domain[nv_clk_src_gpc] = 804000, + .voltage = 13, }, }, { .base = { .domain[nv_clk_src_gpc] = 852000, + .voltage = 14, }, }, }; diff --git a/nvkm/subdev/volt/gk20a.c b/nvkm/subdev/volt/gk20a.c new file mode 100644 index 00...
2014 Nov 28
0
[RESEND PATCH nouveau 3/3] volt: add support for GK20A
...{ .base = { .domain[nv_clk_src_gpc] = 648000, + .voltage = 9, }, }, { .base = { .domain[nv_clk_src_gpc] = 684000, + .voltage = 10, }, }, { .base = { .domain[nv_clk_src_gpc] = 708000, + .voltage = 11, }, }, { .base = { .domain[nv_clk_src_gpc] = 756000, + .voltage = 12, }, }, { .base = { .domain[nv_clk_src_gpc] = 804000, + .voltage = 13, }, }, { .base = { .domain[nv_clk_src_gpc] = 852000, + .voltage = 14, }, }, }; diff --git a/nvkm/subdev/volt/gk20a.c b/nvkm/subdev/volt/gk20a.c new file mode 100644 index 00...
2014 Nov 28
8
[RESEND V2 PATCH 1/3] soc/tegra: fuse: export tegra_sku_info for module use
Some Tegra drivers might be complied as kernel modules, and they need the fuse information for initialization. One example is the GK20A Nouveau driver. It needs the GPU speedo value to calculate frequency-voltage table. So export the tegra_sku_info. Signed-off-by: Vince Hsu <vinceh at nvidia.com> --- v2: add more description why we need this patch drivers/soc/tegra/fuse/fuse-tegra.c | 1
2014 Nov 28
0
[RESEND PATCH nouveau 3/3] volt: add support for GK20A
...}, >> }, >> { >> .base = { >> .domain[nv_clk_src_gpc] = 708000, >> + .voltage = 11, >> }, >> }, >> { >> .base = { >> .domain[nv_clk_src_gpc] = 756000, >> + .voltage = 12, >> }, >> }, >> { >> .base = { >> .domain[nv_clk_src_gpc] = 804000, >> + .voltage = 13, >> }, >> }, >> { >> .base...
2014 Nov 28
2
[PATCH 1/2] volt: allow non-bios voltage scaling
Signed-off-by: Vince Hsu <vinceh at nvidia.com> --- nvkm/subdev/volt/base.c | 67 ++++++++++++++++++++++++++++--------------------- 1 file changed, 38 insertions(+), 29 deletions(-) diff --git a/nvkm/subdev/volt/base.c b/nvkm/subdev/volt/base.c index 32794a999106..26ccd8df193f 100644 --- a/nvkm/subdev/volt/base.c +++ b/nvkm/subdev/volt/base.c @@ -101,6 +101,41 @@ nouveau_volt_set_id(struct
2014 Dec 01
2
[V3 PATCH 1/3] soc/tegra: fuse: export tegra_sku_info
Some Tegra drivers might be compiled as kernel modules, and they need the fuse information for initialization. One example is the GK20A Nouveau driver. It needs the GPU speedo value to calculate frequency-voltage table. So export the tegra_sku_info. Signed-off-by: Vince Hsu <vinceh at nvidia.com> Acked-by: Alexandre Courbot <acourbot at nvidia.com> Acked-by: Thierry Reding <treding
2014 Dec 02
3
[V3 PATCH 1/4] soc/tegra: fuse: export tegra_sku_info
Some Tegra drivers might be compiled as kernel modules, and they need the fuse information for initialization. One example is the GK20A Nouveau driver. It needs the GPU speedo value to calculate frequency-voltage table. So export the tegra_sku_info. Signed-off-by: Vince Hsu <vinceh at nvidia.com> Acked-by: Alexandre Courbot <acourbot at nvidia.com> Acked-by: Thierry Reding <treding
2014 Jul 10
0
[PATCH 3/3] drm/gk20a: reclocking support
...e = { + .domain[nv_clk_src_gpc] = 612000, + }, + }, + { + .base = { + .domain[nv_clk_src_gpc] = 648000, + }, + }, + { + .base = { + .domain[nv_clk_src_gpc] = 684000, + }, + }, + { + .base = { + .domain[nv_clk_src_gpc] = 708000, + }, + }, + { + .base = { + .domain[nv_clk_src_gpc] = 756000, + }, + }, + { + .base = { + .domain[nv_clk_src_gpc] = 804000, + }, + }, + { + .base = { + .domain[nv_clk_src_gpc] = 852000, + }, + }, +}; + +static int +gk20a_clock_read(struct nouveau_clock *clk, enum nv_clk_src src) +{ + struct gk20a_clock_priv *priv = (void *)clk; + + switch (src) { +...
2014 Jul 10
3
[PATCH 3/3] drm/gk20a: reclocking support
....domain[nv_clk_src_gpc] = 648000, > + }, > + }, > + { > + .base = { > + .domain[nv_clk_src_gpc] = 684000, > + }, > + }, > + { > + .base = { > + .domain[nv_clk_src_gpc] = 708000, > + }, > + }, > + { > + .base = { > + .domain[nv_clk_src_gpc] = 756000, > + }, > + }, > + { > + .base = { > + .domain[nv_clk_src_gpc] = 804000, > + }, > + }, > + { > + .base = { > + .domain[nv_clk_src_gpc] = 852000, > + }, > + }, > +}; > + > +static int > +gk20a_clock_read(struct nouveau_clock *clk, enum nv_clk_...
2014 Jul 10
10
[PATCH 0/3] drm/gk20a: support for reclocking
This series adds support for reclocking on GK20A. The first two patches touch the clock subsystem to allow GK20A to operate, by making the presence of the thermal and voltage devices optional, and allowing pstates to be provided directly instead of being probed using the BIOS (which Tegra does not have). The last patch adds the GK20A clock device. Arguably the clock can be seen as a stripped-down
2014 Jul 26
5
[PATCH v2 0/3] drm/gk20a: support for reclocking
Second version of the gk20a clock patches. I have tried to keep the therm and volt devices mandatory in the clock driver, but unfortunately they are too tied to bios to allow this, at least for the moment. Consequently this version is mostly a port of the first version to Ben's tree. Ben, please let me know what I have done wrong in terms of integration to your tree, as the main purpose of