search for: base_id

Displaying 17 results from an estimated 17 matches for "base_id".

Did you mean: base_rid
2006 Dec 05
0
[779] trunk/wxruby2: Added TreeCtrl#traverse method and documentation
...;/ins><span class="cx"> </span><ins>+ </ins><span class="cx"> // GC handling for item data objects </span><span class="cx"> %{ </span><del>- static void RecursivelyGCMarkFrom(wxTreeCtrl *tree_ctrl, wxTreeItemId base_id ) </del><ins>+ // general recursion over a treectrl, starting from a base_id + // the function rec_func will be called in turn for each tree item, + // rec_func should be a funtion that receives a treectrl pointer and an ItemId + static void RecurseOverTreeIds(wxTreeCtrl *tree_ctrl...
2005 Dec 01
0
[fdo] Programming problems in Dual Head Mode.
...XvQueryAdaptors(display, RootWindow(display, screen), &numAdaptors, > &info); > for(i = 0; i < numAdaptors; i++) { > if(info[i].type & XvImageMask) { > /* Adaptor has XvImage support */ > formats = XvListImageFormats(display, info[i].base_id, > &numImages); > > for(j = 0; j < numImages; j++) { > if(formats[j].id == GUID_MBX1_PLANAR) { > /* It supports our format */ > adaptor = i; > for(k = 0; k < info[i].num_ports; k++) { &gt...
2005 Dec 05
0
[fdo] Programming problems in Dual Head Mode with Tiny-X.
...XvQueryAdaptors(display, RootWindow(display, screen), &numAdaptors, > &info); > for(i = 0; i < numAdaptors; i++) { > if(info[i].type & XvImageMask) { > /* Adaptor has XvImage support */ > formats = XvListImageFormats(display, info[i].base_id, > &numImages); > > for(j = 0; j < numImages; j++) { > if(formats[j].id == GUID_MBX1_PLANAR) { > /* It supports our format */ > adaptor = i; > for(k = 0; k < info[i].num_ports; k++) { &gt...
2004 Aug 25
7
problem subclassing Wx::Menu
...ortunately I can''t get that far yet ... cheers alex -------------- next part -------------- require ''wxruby'' class EasyMenu < Wx::Menu def EasyMenu.next_base() @base_range ||= 0 @base_range += 100 end def initialize(target) @target = target @base_id = EasyMenu.next_base() @commands = {} end # adds a menu item with the title +command_str+, optionally bound to # the shortcut key +command_key+, and binds the menu item to the # block argument. Returns a symbol which can be later used to # identify the menu item to other arguments...
2017 Nov 22
1
[PATCH 01/32] bios/vpstate: There are some fermi vbios with no boost or tdp entry
...2..71524548 100644 > --- a/drm/nouveau/nvkm/subdev/bios/vpstate.c > +++ b/drm/nouveau/nvkm/subdev/bios/vpstate.c > @@ -58,8 +58,14 @@ nvbios_vpstate_parse(struct nvkm_bios *b, struct nvbios_vpstate_header *h) > h->ecount = nvbios_rd08(b, h->offset + 0x5); > > h->base_id = nvbios_rd08(b, h->offset + 0x0f); > - h->boost_id = nvbios_rd08(b, h->offset + 0x10); > - h->tdp_id = nvbios_rd08(b, h->offset + 0x11); > + if (h->hlen > 0x10) > + h->boost_id = nvbios_rd08(b, h->offset + 0x10); > + else > + h->boost_id =...
2006 Dec 23
0
[797] trunk/wxruby2/swig/classes/TreeCtrl.i: Traverse method moved to wxSugar
...t;/span><span class="cx"> </span><span class="cx"> %extend wxTreeCtrl { </span><del>- - VALUE traverse(const wxTreeItemId& item_id = wxTreeItemId() ) - { -&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbspwxTreeItemId base_id; - -&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbspif ( item_id.IsOk() ) -&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp { -&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&...
2006 Nov 16
0
[741] trunk/wxruby2: Fix get_item_data, hiding TreeItemData messiness, fix GC-ing (Alex Fenton)
...bsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp $result = ruby_item_data->GetRubyObject(); +&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp} +} + +// GC handling for item data objects +%{ + static void RecursivelyGCMarkFrom(wxTreeCtrl *tree_ctrl, wxTreeItemId base_id ) + { +&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp +&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp// check if there''s item data, and mark it +&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbspwxRbTreeItemData* ru...
2017 Nov 17
0
[PATCH 01/32] bios/vpstate: There are some fermi vbios with no boost or tdp entry
...v/bios/vpstate.c index 20b6fc82..71524548 100644 --- a/drm/nouveau/nvkm/subdev/bios/vpstate.c +++ b/drm/nouveau/nvkm/subdev/bios/vpstate.c @@ -58,8 +58,14 @@ nvbios_vpstate_parse(struct nvkm_bios *b, struct nvbios_vpstate_header *h) h->ecount = nvbios_rd08(b, h->offset + 0x5); h->base_id = nvbios_rd08(b, h->offset + 0x0f); - h->boost_id = nvbios_rd08(b, h->offset + 0x10); - h->tdp_id = nvbios_rd08(b, h->offset + 0x11); + if (h->hlen > 0x10) + h->boost_id = nvbios_rd08(b, h->offset + 0x10); + else + h->boost_id = 0xff; + if (h->hlen >...
2018 Jul 14
2
[PATCH 0/2] Some minor reclocking fixes
First patch fixes a potential vbios parsing bug on Fermi GPUs, but it may also affect Kepler ones. Second patch wakes the GPU up whenever the user tries to reclock to prevent the write to the pstate file from freezing. Karol Herbst (2): bios/vpstate: There are some fermi vbios with no boost or tdp entry debugfs: Wake up GPU before doing any reclocking drm/nouveau/nouveau_debugfs.c
2016 Apr 18
0
[PATCH v4 15/37] clk: allow boosting only when NvBoost is set
...NVKM_CLK_BOOST_AVG); + if (bios && !nvbios_baseclock_parse(bios, &h)) { + struct nvbios_baseclk_entry base, boost; + if (!nvbios_baseclock_entry(bios, &h, h.boost_id, &boost)) + clk->boost_khz = boost.clock_mhz * 1000; + if (!nvbios_baseclock_entry(bios, &h, h.base_id, &base)) + clk->base_khz = base.clock_mhz * 1000; + } - nvkm_subdev_ctor(&nvkm_clk, device, index, &clk->subdev); clk->func = func; INIT_LIST_HEAD(&clk->states); clk->domains = func->domains; diff --git a/drm/nouveau/nvkm/subdev/clk/gf100.c b/drm/nouveau/...
2017 Nov 17
35
[PATCH 00/32] Updated State of my clk patches
Last update here: https://lists.freedesktop.org/archives/nouveau/2017-September/028848.html Basically big cleanup, reordering, simplifications and some renaming to make the code easier to read and to review. I also moved some bugfixes to the front so they can be merged prior the other patches. There was also a bug related to the therm daemon triggering a pstate change leading to PMU lockups,
2017 Sep 15
42
[RFC PATCH 00/29] Current State of my clk patches
Just wanted to post updated versions of my last series/patches. Reviews welcomed. It would be also nice if we agree on features I should focus upstreaming, so that this work can be better splitted or reordered. Sadly most of my patches depend on the rather big clk subdev rework and I think those patches shows best, why I think this rework is actually needed and makes things much easier to add
2016 Mar 21
28
[PATCH v2 00/22] Volting/Clocking improvements for Fermi and newer
This series fixes most of the issues regarding volting on GPUs with any form of GPU Boost inside their vbios, which is mainly Kepler and newer, but we find some boosting related tables in Fermi vbios' already In the end reclocking should work on most Kepler cards without any issues v2: boost_mode can now be changed at runtime minor fixups Karol Herbst (22): bios/volt: handle voltage
2016 Aug 16
21
[PATCH v5 00/20] Engine Reclocking Fixes for Fermi-Maxwell2
I've splitted my big series between the part which actually fixes the engine reclocking bits and the part handling voltage/clock updates on temperature change, so that the more reviewed parts can be merged in faster. This series fixes a lot of Engine reclocking issues found on Fermi, Kepler and all Maxwell generation GPUs. It does _not_ fix memory reclocking on Fermi. It mostly contains of
2016 Apr 07
29
[PATCH v3 00/29] Volting/Clocking improvements for Fermi and newer
This is an updated series for the old clocking improvement one. I think I got everything needed in place and also a simple update mechanism for updating the cstates/voltage on temperature changes. If anything is unclear how I REed or got the information, please leave a note so that I can provide additional information in the commits. Besides that I think we are pretty close now and only some
2014 Dec 01
0
Fwd: samba 3.6.24 domain member as printserver in win2008/2012 domain: Access denied
...nd enum groups = Yes winbind use default domain = Yes winbind nested groups = Yes winbind separator = + idmap config *:backend = tdb idmap config *:range = 20000-39999 idmap config DOMAIN:backend = rid idmap config DOMAIN:range = 600-19999 idmap config DOMAIN:base_id = 0 idmap config DOMAIN:default = yes template homedir = /home/%U template shell = /sbin/nologin allow trusted domains = No server signing = mandatory client signing = mandatory client use spnego = Yes ntlm auth = Yes lanman auth = No username map...
2016 Apr 18
63
[PATCH v4 00/37] Volting/Clocking improvements for Fermi and newer
We are slowly getting there! v4 of the series with some realy good improvements, so I am sure this is like 95% done and only needs some proper polishing and proper Reviews! I also added the NvVoltOffsetmV module parameter, so that a user is able to over and !under!-volt the GPU. Overvolting makes sense, when there are still some reclocking issues left, which might be solved by a higher voltage.