search for: nv_subdev_typ

Displaying 10 results from an estimated 10 matches for "nv_subdev_typ".

Did you mean: nv_subdev_type
2012 Sep 13
1
[PATCH] drm/nouveau: POST the card before GPIO initialization
...1 deletion(-) diff --git a/drivers/gpu/drm/nouveau/core/include/core/device.h b/drivers/gpu/drm/nouveau/core/include/core/device.h index 588deb9..3a6482e 100644 --- a/drivers/gpu/drm/nouveau/core/include/core/device.h +++ b/drivers/gpu/drm/nouveau/core/include/core/device.h @@ -8,11 +8,11 @@ enum nv_subdev_type { NVDEV_SUBDEV_DEVICE, NVDEV_SUBDEV_VBIOS, - NVDEV_SUBDEV_GPIO, NVDEV_SUBDEV_I2C, NVDEV_SUBDEV_CLOCK, NVDEV_SUBDEV_MXM, NVDEV_SUBDEV_DEVINIT, + NVDEV_SUBDEV_GPIO, NVDEV_SUBDEV_MC, NVDEV_SUBDEV_TIMER, NVDEV_SUBDEV_FB, -- 1.7.12
2014 Apr 02
1
[PATCH 06/12] drm/nouveau/ibus: add GK20A support
On Wed, Apr 2, 2014 at 9:52 AM, Alexandre Courbot <gnurou at gmail.com> wrote: > On Tue, Mar 25, 2014 at 7:34 AM, Thierry Reding > <thierry.reding at gmail.com> wrote: >> On Mon, Mar 24, 2014 at 05:42:28PM +0900, Alexandre Courbot wrote: >> [...] >>> diff --git a/drivers/gpu/drm/nouveau/core/subdev/ibus/nvea.c b/drivers/gpu/drm/nouveau/core/subdev/ibus/nvea.c
2014 Dec 18
2
[RFC PATCH 2/3] dvfs: add support for GK20A
...case 0xf0: > device->cname = "GK110"; > diff --git a/nvkm/include/core/device.h b/nvkm/include/core/device.h > index 2ec2e50d3676..162fa6a3cfcc 100644 > --- a/nvkm/include/core/device.h > +++ b/nvkm/include/core/device.h > @@ -39,6 +39,7 @@ enum nv_subdev_type { > NVDEV_SUBDEV_VOLT, > NVDEV_SUBDEV_THERM, > NVDEV_SUBDEV_CLOCK, > + NVDEV_SUBDEV_DVFS, > > NVDEV_ENGINE_FIRST, > NVDEV_ENGINE_DMAOBJ = NVDEV_ENGINE_FIRST, > diff --git a/nvkm/include/subdev/dvfs.h b/nvkm/include/subdev/dvfs.h...
2014 Dec 18
3
[RFC PATCH 2/3] dvfs: add support for GK20A
...evice->cname = "GK110"; >>> diff --git a/nvkm/include/core/device.h b/nvkm/include/core/device.h >>> index 2ec2e50d3676..162fa6a3cfcc 100644 >>> --- a/nvkm/include/core/device.h >>> +++ b/nvkm/include/core/device.h >>> @@ -39,6 +39,7 @@ enum nv_subdev_type { >>> NVDEV_SUBDEV_VOLT, >>> NVDEV_SUBDEV_THERM, >>> NVDEV_SUBDEV_CLOCK, >>> + NVDEV_SUBDEV_DVFS, >>> >>> NVDEV_ENGINE_FIRST, >>> NVDEV_ENGINE_DMAOBJ = NVDEV_ENGINE_FIRST, >>>...
2014 Dec 18
4
[RFC PATCH 0/3] introduce DVFS for GK20A
Hi, This is a try to have some simple DVFS (Dynamic Voltage and Frequency Scaling) support for GK20A. Instead of relying on other existing frequency scaling framework, we create a simple subdev in Nouveau for the same purpose. That's because we don't want to make the DVFS implementation for GK20A far more than enough in the beginning and hinder the implementation for dGPU in the future.
2014 Dec 18
0
[RFC PATCH 2/3] dvfs: add support for GK20A
..._SUBDEV_DVFS ] = gk20a_dvfs_oclass; break; case 0xf0: device->cname = "GK110"; diff --git a/nvkm/include/core/device.h b/nvkm/include/core/device.h index 2ec2e50d3676..162fa6a3cfcc 100644 --- a/nvkm/include/core/device.h +++ b/nvkm/include/core/device.h @@ -39,6 +39,7 @@ enum nv_subdev_type { NVDEV_SUBDEV_VOLT, NVDEV_SUBDEV_THERM, NVDEV_SUBDEV_CLOCK, + NVDEV_SUBDEV_DVFS, NVDEV_ENGINE_FIRST, NVDEV_ENGINE_DMAOBJ = NVDEV_ENGINE_FIRST, diff --git a/nvkm/include/subdev/dvfs.h b/nvkm/include/subdev/dvfs.h new file mode 100644 index 000000000000..3851629a0de4 --- /dev/null +++ b...
2014 Dec 18
0
[RFC PATCH 2/3] dvfs: add support for GK20A
...; device->cname = "GK110"; >> diff --git a/nvkm/include/core/device.h b/nvkm/include/core/device.h >> index 2ec2e50d3676..162fa6a3cfcc 100644 >> --- a/nvkm/include/core/device.h >> +++ b/nvkm/include/core/device.h >> @@ -39,6 +39,7 @@ enum nv_subdev_type { >> NVDEV_SUBDEV_VOLT, >> NVDEV_SUBDEV_THERM, >> NVDEV_SUBDEV_CLOCK, >> + NVDEV_SUBDEV_DVFS, >> >> NVDEV_ENGINE_FIRST, >> NVDEV_ENGINE_DMAOBJ = NVDEV_ENGINE_FIRST, >> diff --git a/nvkm/include/subde...
2014 Dec 18
0
[RFC PATCH 2/3] dvfs: add support for GK20A
...uot;GK110"; >>>> diff --git a/nvkm/include/core/device.h b/nvkm/include/core/device.h >>>> index 2ec2e50d3676..162fa6a3cfcc 100644 >>>> --- a/nvkm/include/core/device.h >>>> +++ b/nvkm/include/core/device.h >>>> @@ -39,6 +39,7 @@ enum nv_subdev_type { >>>> NVDEV_SUBDEV_VOLT, >>>> NVDEV_SUBDEV_THERM, >>>> NVDEV_SUBDEV_CLOCK, >>>> + NVDEV_SUBDEV_DVFS, >>>> >>>> NVDEV_ENGINE_FIRST, >>>> NVDEV_ENGINE_DMAOBJ =...
2014 Aug 24
0
[PATCH 1/3] subdev: add a pfuse subdev
...therm_oclass; > device->oclass[NVDEV_SUBDEV_MXM ] = &nv50_mxm_oclass; > diff --git a/nvkm/include/core/device.h b/nvkm/include/core/device.h > index 8743766..1d9d893 100644 > --- a/nvkm/include/core/device.h > +++ b/nvkm/include/core/device.h > @@ -24,6 +24,7 @@ enum nv_subdev_type { > * been created, and are allowed to assume any subdevs in the > * list above them exist and have been initialised. > */ > + NVDEV_SUBDEV_FUSE, > NVDEV_SUBDEV_MXM, > NVDEV_SUBDEV_MC, > NVDEV_SUBDEV_BUS, > diff --git a/nvkm/include/subdev/fuse.h b/nvkm...
2014 Aug 24
8
[PATCH 1/3] subdev: add a pfuse subdev
...EV_SUBDEV_THERM ] = &nvd0_therm_oclass; device->oclass[NVDEV_SUBDEV_MXM ] = &nv50_mxm_oclass; diff --git a/nvkm/include/core/device.h b/nvkm/include/core/device.h index 8743766..1d9d893 100644 --- a/nvkm/include/core/device.h +++ b/nvkm/include/core/device.h @@ -24,6 +24,7 @@ enum nv_subdev_type { * been created, and are allowed to assume any subdevs in the * list above them exist and have been initialised. */ + NVDEV_SUBDEV_FUSE, NVDEV_SUBDEV_MXM, NVDEV_SUBDEV_MC, NVDEV_SUBDEV_BUS, diff --git a/nvkm/include/subdev/fuse.h b/nvkm/include/subdev/fuse.h new file mode 100644 in...