Displaying 20 results from an estimated 69 matches for "vdd".
Did you mean:
dd
2014 May 19
10
[PATCH 0/5] drm/nouveau: platform devices and GK20A probing
This patch series is the final (?) step towards the initial support of GK20A,
allowing it to be probed and used (currently at a very slow speed, and for
offscreen rendering only) on the Jetson TK1 and Venice 2 boards.
The main piece if the first patch which adds platform devices probing support
to Nouveau. There are probably lots of things that need to be discussed about
it, e.g.:
* The way the
2014 Jun 13
3
[PATCH v2 0/3] drm/nouveau: support for probing platform devices
This series adds support for probing platform devices on Nouveau, as well as
the DT bindings for GK20A. It doesn't enable the GPU yet on Tegra boards since
a few extra things need to be supported before that.
Thanks to the input received for v1, this version is more self-contained and
shares less stuff between nouveau_drm and nouveau_platform. The major change
is that nouveau_platform is now
2014 Jun 26
6
[PATCH v3 0/3] drm/nouveau: support for probing platform devices
This series adds support for probing platform devices on Nouveau, as well as
the DT bindings for GK20A. It doesn't enable the GPU yet on Tegra boards since
a few extra things need to be supported before that.
This version is mostly identical to v2 but fixes an important issue: the drvdata
must be set to the drm_device for sysfs to work, so the platform device
structure now includes the
2016 Jul 17
2
[PATCH] : Adding dlabel option to chain.c32
...ot; ...
> https://github.com/ErwanAliasr1/syslinux/commit/ebf8cbf
>
> SeaBIOS / GRUB2
>
> ...
> ...
> <target dev='vdc' bus='virtio'/>
> <boot order='3'/>
> ...
> ...
> <target dev='vdd' bus='virtio'/>
> <boot order='4'/>
> ...
> ...
>
>
> # gdisk -l /dev/vdc
> ...
> Partition table scan:
> MBR: protective
> BSD: not present
> APM: not present
> GPT: present
>
> Found valid GPT with p...
2014 Jun 26
0
[PATCH v3 1/3] drm/nouveau: support for probing platform devices
...eset.h>
+#include <linux/regulator/consumer.h>
+#include <linux/tegra-powergate.h>
+
+#include "nouveau_drm.h"
+#include "nouveau_platform.h"
+
+static int nouveau_platform_power_up(struct nouveau_platform_gpu *gpu)
+{
+ int err;
+
+ err = regulator_enable(gpu->vdd);
+ if (err)
+ goto err_power;
+
+ err = clk_prepare_enable(gpu->clk);
+ if (err)
+ goto err_clk;
+ err = clk_prepare_enable(gpu->clk_pwr);
+ if (err)
+ goto err_clk_pwr;
+ clk_set_rate(gpu->clk_pwr, 204000000);
+ udelay(10);
+
+ reset_control_assert(gpu->rst);
+ udelay(10);
+
+ err...
2014 Nov 28
0
[PATCH 2/2] volt: add support for GK20A
...t;linux/regulator/consumer.h>
+#include <soc/tegra/fuse.h>
+
+#include <nouveau_platform.h>
+#include <subdev/volt.h>
+
+struct cvb_coef {
+ int c0;
+ int c1;
+ int c2;
+ int c3;
+ int c4;
+ int c5;
+};
+
+struct gk20a_volt_priv {
+ struct nouveau_volt base;
+ struct regulator *vdd;
+};
+
+const struct cvb_coef gk20a_cvb_coef[] = {
+ /* MHz, c0, c1, c2, c3, c4, c5 */
+ /* 72 */ { 1209886, -36468, 515, 417, -13123, 203},
+ /* 108 */ { 1130804, -27659, 296, 298, -10834, 221},
+ /* 180 */ { 1162871, -27110, 247, 238, -10681, 268},
+ /* 252 */ {...
2014 Nov 28
0
[RESEND PATCH nouveau 3/3] volt: add support for GK20A
...t;linux/regulator/consumer.h>
+#include <soc/tegra/fuse.h>
+
+#include <nouveau_platform.h>
+#include <subdev/volt.h>
+
+struct cvb_coef {
+ int c0;
+ int c1;
+ int c2;
+ int c3;
+ int c4;
+ int c5;
+};
+
+struct gk20a_volt_priv {
+ struct nouveau_volt base;
+ struct regulator *vdd;
+};
+
+const struct cvb_coef gk20a_cvb_coef[] = {
+ /* MHz, c0, c1, c2, c3, c4, c5 */
+ /* 72 */ { 1209886, -36468, 515, 417, -13123, 203},
+ /* 108 */ { 1130804, -27659, 296, 298, -10834, 221},
+ /* 180 */ { 1162871, -27110, 247, 238, -10681, 268},
+ /* 252 */ {...
2016 Jul 28
2
[PATCH] : Adding dlabel option to chain.c32
...quot; ...
> https://github.com/ErwanAliasr1/syslinux/commit/ebf8cbf
>
> SeaBIOS / GRUB2
>
> ...
> ...
> <target dev='vdc' bus='virtio'/>
> <boot order='3'/>
> ...
> ...
> <target dev='vdd' bus='virtio'/>
> <boot order='4'/>
> ...
> ...
>
>
> # gdisk -l /dev/vdc
> ...
> Partition table scan:
> MBR: protective
> BSD: not present
> APM: not present
> GPT: present
>
> Found valid GPT with prot...
2012 Oct 25
46
[RFC] New attempt to a better "btrfs fi df"
...: 9.00GB
Disk_allocated: 1.83GB
Disk_unallocated: 7.17GB
Used: 284.00KB
Free_(Estimated): 6.76GB (Max: 8.54GB, min: 4.96GB)
Data_to_disk_ratio: 75 %
Allocated_area:
Data,RAID0: Size:921.75MB, Used:256.00KB
/dev/vdc 307.25MB
/dev/vdb 307.25MB
/dev/vdd 307.25MB
Data,Single: Size:8.00MB, Used:0.00
/dev/vdb 8.00MB
System,RAID1: Size:8.00MB, Used:4.00KB
/dev/vdd 8.00MB
/dev/vdc 8.00MB
System,Single: Size:4.00MB, Used:0.00
/dev/vdb 4.00MB
Metadata,RAID1: Size:460.94MB, Used:24.00KB
/dev/vdb 460...
2014 Nov 28
2
[RESEND PATCH nouveau 3/3] volt: add support for GK20A
...+#include <nouveau_platform.h>
> +#include <subdev/volt.h>
> +
> +struct cvb_coef {
> + int c0;
> + int c1;
> + int c2;
> + int c3;
> + int c4;
> + int c5;
> +};
> +
> +struct gk20a_volt_priv {
> + struct nouveau_volt base;
> + struct regulator *vdd;
> +};
> +
> +const struct cvb_coef gk20a_cvb_coef[] = {
> + /* MHz, c0, c1, c2, c3, c4, c5 */
> + /* 72 */ { 1209886, -36468, 515, 417, -13123, 203},
> + /* 108 */ { 1130804, -27659, 296, 298, -10834, 221},
> + /* 180 */ { 1162871, -27110, 247,...
2016 Jul 16
5
[PATCH] : Adding dlabel option to chain.c32
The idea is to boot a disk in an mbr fashion while using the GPT (not
filesystem) label to detect the disk.
That is useful when you use grub2 & gpt. I was in case where my nodes
(100s) have 8 disks each and no guarantee of which disk is "bootable" in
the disk.
This way I can tell "please boot the disk that have one partition labelled
"xyz"".
So nothing related
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
...t;> +
>> +struct cvb_coef {
>> + int c0;
>> + int c1;
>> + int c2;
>> + int c3;
>> + int c4;
>> + int c5;
>> +};
>> +
>> +struct gk20a_volt_priv {
>> + struct nouveau_volt base;
>> + struct regulator *vdd;
>> +};
>> +
>> +const struct cvb_coef gk20a_cvb_coef[] = {
>> + /* MHz, c0, c1, c2, c3, c4, c5 */
>> + /* 72 */ { 1209886, -36468, 515, 417, -13123, 203},
>> + /* 108 */ { 1130804, -27659, 296, 298, -10834, 221},
>>...
2012 Dec 17
5
Feeback on RAID1 feature of Btrfs
...008-01-24 23:16 linux-2.6.24.tar.bz2
drwxr-xr-x 1 root root 352 2008-04-17 02:49 linux-2.6.25
Some output of btrfs tools
# btrfs fi sh
Label: ''test'' uuid: 7d72c625-4dd7-4db0-b4a2-075e26572b99
Total devices 3 FS bytes used 11.57GB
devid 3 size 10.00GB used 9.76GB path /dev/vdd
devid 2 size 10.00GB used 10.00GB path /dev/vdc
devid 1 size 9.77GB used 9.77GB path /dev/vdb
# btrfs fi df .
Data, RAID1: total=13.50GB, used=10.56GB
Data: total=8.00MB, used=0.00
System, RAID1: total=8.00MB, used=4.00KB
System: total=4.00MB, used=0.00
Metadata, RAID1: total=1.25GB, used=...
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 Jun 26
2
[PATCH v3 1/3] drm/nouveau: support for probing platform devices
...h>
> +#include <linux/tegra-powergate.h>
> +
> +#include "nouveau_drm.h"
> +#include "nouveau_platform.h"
> +
> +static int nouveau_platform_power_up(struct nouveau_platform_gpu *gpu)
> +{
> + int err;
> +
> + err = regulator_enable(gpu->vdd);
> + if (err)
> + goto err_power;
> +
> + err = clk_prepare_enable(gpu->clk);
> + if (err)
> + goto err_clk;
> + err = clk_prepare_enable(gpu->clk_pwr);
> + if (err)
> + goto err_clk_pwr;
> + clk_set_rate(gpu->clk_pwr, 204000000);
> + udelay(10);
> +...
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
2016 Jul 17
0
[PATCH] : Adding dlabel option to chain.c32
...~~~~~
As opposed to "label",
"dlabel" ...
https://github.com/ErwanAliasr1/syslinux/commit/ebf8cbf
SeaBIOS / GRUB2
...
...
<target dev='vdc' bus='virtio'/>
<boot order='3'/>
...
...
<target dev='vdd' bus='virtio'/>
<boot order='4'/>
...
...
# gdisk -l /dev/vdc
...
Partition table scan:
MBR: protective
BSD: not present
APM: not present
GPT: present
Found valid GPT with protective MBR; using GPT.
Disk /dev/vdc: ...
...
Number Start (sector...
2016 Jan 26
2
[PATCH] device/tegra: fix uninitialized IRQ number
Am Montag, den 25.01.2016, 18:44 +0900 schrieb Alexandre Courbot:
> nvkm_device_tegra_new initializes the irq member of the Tegra device
> to -1 in order to signal that it is uninitialized. However,
> nvkm_device_tegra_fini tests it against 0 to check whether an IRQ has
> been allocated or not. This leads to free_irq being called on -1
> during
> device initialization.
>
The