[OE-core] [PATCH 3/5 v3] image_types: use IMAGE_FILE_MAXSIZE variable for btrfs image types

2023-11-01 Thread Charles-Antoine Couret via lists.openembedded.org
-by: Charles-Antoine Couret --- meta/classes-recipe/image_types.bbclass | 6 ++ 1 file changed, 6 insertions(+) diff --git a/meta/classes-recipe/image_types.bbclass b/meta/classes-recipe/image_types.bbclass index fb1e33cf3e..1356552445 100644 --- a/meta/classes-recipe/image_types.bbclass +++ b/meta

[OE-core] [PATCH 5/5 v3] image: add check_image_max_size as post function to check file size against IMAGE_FILE_MAXSIZE

2023-11-01 Thread Charles-Antoine Couret via lists.openembedded.org
. Signed-off-by: Charles-Antoine Couret --- meta/classes-recipe/image.bbclass | 30 +++ meta/lib/oeqa/selftest/cases/imagefeatures.py | 52 +++ 2 files changed, 82 insertions(+) diff --git a/meta/classes-recipe/image.bbclass b/meta/classes-recipe/image.bbclass index

[OE-core] [PATCH 4/5 v3] image_types: use IMAGE_FILE_MAXSIZE variable for f2fs image types

2023-11-01 Thread Charles-Antoine Couret via lists.openembedded.org
-by: Charles-Antoine Couret --- meta/classes-recipe/image_types.bbclass | 6 ++ 1 file changed, 6 insertions(+) diff --git a/meta/classes-recipe/image_types.bbclass b/meta/classes-recipe/image_types.bbclass index 1356552445..6e3190fa3f 100644 --- a/meta/classes-recipe/image_types.bbclass +++ b/meta

[OE-core] [PATCH 2/5 v3] image_types: use IMAGE_FILE_MAXSIZE variable for ext2/3/4 image types

2023-11-01 Thread Charles-Antoine Couret via lists.openembedded.org
-by: Charles-Antoine Couret --- meta/classes-recipe/image_types.bbclass | 24 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/meta/classes-recipe/image_types.bbclass b/meta/classes-recipe/image_types.bbclass index be8197f1f6..fb1e33cf3e 100644 --- a/meta/classes

[OE-core] [PATCH 1/5 v3] image_types: add python function to get the IMAGE_FILE_MAXSIZE:fstype value

2023-11-01 Thread Charles-Antoine Couret via lists.openembedded.org
. If IMAGE_FILE_MAXSIZE is not set, the idea is to keep the previous behaviour for compatibility reason and to met other requirements. Signed-off-by: Charles-Antoine Couret --- meta/classes-recipe/image_types.bbclass | 7 +++ 1 file changed, 7 insertions(+) diff --git a/meta/classes-recipe

[OE-core] [PATCH 0/5 v3] image_types: use IMAGE_FILE_MAXSIZE variable to create fixed partition size

2023-11-01 Thread Charles-Antoine Couret via lists.openembedded.org
function to get the value of this variable from shell functions otherwise parsing issue can happen * Added an additional task to check the final result which works for all filesystems and not only those created with dd command. Charles-Antoine Couret (6): image_types: add python function to get

Re: Accented uppercase letters

2023-09-27 Thread Charles-Antoine Couret
490 It looks like GNOME with Wayland is a problem, with X11 it works fine for all applications. Can you add your comment there please? Regards, Charles-Antoine Couret ___ test mailing list -- test@lists.fedoraproject.org To unsubscribe send an em

[OE-core] [PATCH] systemd-boot-cfg: add .conf suffix to default entry label

2023-09-24 Thread Charles-Antoine Couret via lists.openembedded.org
stemd-boot is not able to use this information and it's starting in any case the first entry. To be able to start another entry by default, .conf suffix is required. With this change, LABELS variable can still be used by other bootloaders and being used as description field. Signed-off-by: Charl

[OE-core] [PATCH 4/5 v2] image_types: use IMAGE_FILE_MAXSIZE variable for f2fs image types

2023-08-06 Thread Charles-Antoine Couret via lists.openembedded.org
-by: Charles-Antoine Couret --- meta/classes-recipe/image_types.bbclass | 6 ++ 1 file changed, 6 insertions(+) diff --git a/meta/classes-recipe/image_types.bbclass b/meta/classes-recipe/image_types.bbclass index 6e54f2f13a..51b2b6ea1d 100644 --- a/meta/classes-recipe/image_types.bbclass +++ b/meta

[OE-core] [PATCH 5/5 v2] image: add check_image_max_size as post function to check file size against IMAGE_FILE_MAXSIZE

2023-08-06 Thread Charles-Antoine Couret via lists.openembedded.org
. Signed-off-by: Charles-Antoine Couret --- meta/classes-recipe/image.bbclass | 30 ++ 1 file changed, 30 insertions(+) diff --git a/meta/classes-recipe/image.bbclass b/meta/classes-recipe/image.bbclass index e0dfba4a42..bf47f3dea3 100644 --- a/meta/classes-recipe

[OE-core] [PATCH 3/5 v2] image_types: use IMAGE_FILE_MAXSIZE variable for btrfs image types

2023-08-06 Thread Charles-Antoine Couret via lists.openembedded.org
-by: Charles-Antoine Couret --- meta/classes-recipe/image_types.bbclass | 6 ++ 1 file changed, 6 insertions(+) diff --git a/meta/classes-recipe/image_types.bbclass b/meta/classes-recipe/image_types.bbclass index 2ec41c6e54..6e54f2f13a 100644 --- a/meta/classes-recipe/image_types.bbclass +++ b/meta

[OE-core] [PATCH 2/5 v2] image_types: use IMAGE_FILE_MAXSIZE variable for ext2/3/4 image types

2023-08-06 Thread Charles-Antoine Couret via lists.openembedded.org
-by: Charles-Antoine Couret --- meta/classes-recipe/image_types.bbclass | 24 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/meta/classes-recipe/image_types.bbclass b/meta/classes-recipe/image_types.bbclass index 33c65e8282..2ec41c6e54 100644 --- a/meta/classes

[OE-core] [PATCH 1/5 v2] image_types: add python function to get the IMAGE_FILE_MAXSIZE:fstype value

2023-08-06 Thread Charles-Antoine Couret via lists.openembedded.org
. If IMAGE_FILE_MAXSIZE is not set, the idea is to keep the previous behaviour for compatibility reason and to met other requirements. Signed-off-by: Charles-Antoine Couret --- documentation/ref-manual/variables.rst | 14 ++ meta/classes-recipe/image_types.bbclass | 7 +++ 2 files changed, 21

[OE-core] [PATCH 0/5 v2] image_types: use IMAGE_FILE_MAXSIZE variable to create fixed partition size

2023-08-06 Thread Charles-Antoine Couret via lists.openembedded.org
works for all filesystems and not only those created with dd command. Charles-Antoine Couret (5): image_types: add python function to get the IMAGE_FILE_MAXSIZE:fstype value image_types: use IMAGE_FILE_MAXSIZE variable for ext2/3/4 image types image_types: use IMAGE_FILE_MAXSIZE variable

[OE-core] [PATCH 3/3] image_types: use IMAGE_FILE_MAXSIZE variable for f2fs image types

2023-06-04 Thread Charles-Antoine Couret via lists.openembedded.org
-by: Charles-Antoine Couret --- meta/classes-recipe/image_types.bbclass | 5 + 1 file changed, 5 insertions(+) diff --git a/meta/classes-recipe/image_types.bbclass b/meta/classes-recipe/image_types.bbclass index f157a84b2e..b5d32b7622 100644 --- a/meta/classes-recipe/image_types.bbclass +++ b/meta

[OE-core] [PATCH 2/3] image_types: use IMAGE_FILE_MAXSIZE variable for btrfs image types

2023-06-04 Thread Charles-Antoine Couret via lists.openembedded.org
-by: Charles-Antoine Couret --- meta/classes-recipe/image_types.bbclass | 4 1 file changed, 4 insertions(+) diff --git a/meta/classes-recipe/image_types.bbclass b/meta/classes-recipe/image_types.bbclass index cebbb61545..f157a84b2e 100644 --- a/meta/classes-recipe/image_types.bbclass +++ b/meta

[OE-core] [PATCH 1/3] image_types: use IMAGE_FILE_MAXSIZE variable for ext2/3/4 image types

2023-06-04 Thread Charles-Antoine Couret via lists.openembedded.org
-by: Charles-Antoine Couret --- meta/classes-recipe/image_types.bbclass | 25 + 1 file changed, 17 insertions(+), 8 deletions(-) diff --git a/meta/classes-recipe/image_types.bbclass b/meta/classes-recipe/image_types.bbclass index e4939af459..cebbb61545 100644 --- a/meta/classes

[OE-core] [PATCH 0/3] image_types: use IMAGE_FILE_MAXSIZE variable to create fixed partition size

2023-06-04 Thread Charles-Antoine Couret via lists.openembedded.org
behaviour for compatibility reason and to met other requirements. Charles-Antoine Couret (3): image_types: use IMAGE_FILE_MAXSIZE variable for ext2/3/4 image types image_types: use IMAGE_FILE_MAXSIZE variable for btrfs image types image_types: use IMAGE_FILE_MAXSIZE variable for f2fs image types

[OE-core] [PATCHv2] utils: fix gcc 10 version detection

2020-03-26 Thread Charles-Antoine Couret
Utils can not detect GCC 10 correctly due to wrong regex. It generates this error "ERROR: Can't get compiler version from gcc --version output" Sub-version numbers should be 1 or more digits instead of 1 only. Signed-off-by: Charles-Antoine Couret --- meta/lib/oe/utils.py | 2

[OE-core] [PATCH] utils: fix gcc 10 version detection

2020-03-26 Thread Charles-Antoine Couret
Utils can not detect GCC 10 correctly due to wrong regex. It generates this error "ERROR: Can't get compiler version from gcc --version output" The major version should be 1 or more digits instead of 1 only. Signed-off-by: Charles-Antoine Couret --- meta/lib/oe/utils.py | 2

Re: IBM buying RedHat

2018-10-28 Thread Charles-Antoine Couret
from Red Hat about it. And see more concrete actions from them. Regards, Charles-Antoine Couret ___ devel mailing list -- devel@lists.fedoraproject.org To unsubscribe send an email to devel-le...@lists.fedoraproject.org Fedora Code of Conduct: https

Re: [fprint] Validity Sensors VFS471

2018-06-19 Thread Charles-Antoine Couret
Hi, I just read your email. A long time ago, I made the bug report about this device: https://gitlab.freedesktop.org/libfprint/libfprint/issues/48 I still have my HP Elitebook 8560w and I will start to analyse it and making the driver. I sniffed with Wireshark the link Windows - sensor.

[PATCH] up-device-supply: add conditions to workaround bugged firmware to compute "Fully charged" status

2018-06-19 Thread Charles-Antoine Couret
?id=193061 the fix should be in userspace. Signed-off-by: Charles-Antoine Couret --- src/linux/up-device-supply.c | 57 1 file changed, 38 insertions(+), 19 deletions(-) diff --git a/src/linux/up-device-supply.c b/src/linux/up-device-supply.c index f6b4b55..1b14

Re: [Proposal] Test Day Guidelines

2018-04-12 Thread Charles-Antoine Couret
can prepare that before this day. I agree with the rest of guidlines. Regards, Charles-Antoine Couret ___ test mailing list -- test@lists.fedoraproject.org To unsubscribe send an email to test-le...@lists.fedoraproject.org

[OE-core] [PATCH 1/2] glibc: split glibc and libcrypt

2018-04-06 Thread Charles-Antoine Couret
with Fedora >= 28 and other distros. libxcrypt is backwards compatible with libcrypt but not the converse. Signed-off-by: Charles-Antoine Couret <charles-antoine.cou...@essensium.com> --- meta/recipes-core/glibc/glibc-package.inc | 1 + .../0031-nativesdk-deprecate-libcrypt.patc

[OE-core] [PATCH 2/2] perl: add patch to solve libcrypt incompatibility

2018-04-06 Thread Charles-Antoine Couret
Add Perl's patch submitted to upstream to be compiled along with glibc with libcrypt split. Signed-off-by: Charles-Antoine Couret <charles-antoine.cou...@essensium.com> --- .../perl/perl-native_5.24.1.bb| 1 + .../perl-5.26.1-guard_old_libcrypt_fix.patch

[OE-core] [PATCH 0/2] Split glibc and libcrypt

2018-04-06 Thread Charles-Antoine Couret
of these changes is to split glibc and libcrypt to use libxcrypt only to generate the SDK and the uninative tarball. With that, all distros are able to build Poky with official uninative. The time to glibc to apply this change upstream. Charles-Antoine Couret (2): glibc: split glibc and libcrypt perl

Re: Help test GNOME 3.28.0 megaupdate

2018-03-16 Thread Charles-Antoine Couret
release. Regards, Charles-Antoine Couret ___ test mailing list -- test@lists.fedoraproject.org To unsubscribe send an email to test-le...@lists.fedoraproject.org

Re: DNF system-upgrade to F27 failed

2017-10-09 Thread Charles-Antoine Couret
Hi, It's already reported: https://bugzilla.redhat.com/show_bug.cgi?id=1498207 Have a nice day, Regards, Charles-Antoine Couret ___ test mailing list -- test@lists.fedoraproject.org To unsubscribe send an email to test-le

Re: System Upgrade F26 -> F27 Fails

2017-10-06 Thread Charles-Antoine Couret
Hi, I already reported this bug: https://bugzilla.redhat.com/show_bug.cgi?id=1498207 Regards, Charles-Antoine Couret ___ devel mailing list -- devel@lists.fedoraproject.org To unsubscribe send an email to devel-le...@lists.fedoraproject.org

Re: 15 seconds to unlock screen?

2017-09-16 Thread Charles-Antoine Couret
I have the same issue. No problem to connect with GDM, but when it's locked the bug happened. Any Bugzilla report about this? Charles-Antoine Couret — Renault ___ devel mailing list -- devel@lists.fedoraproject.org To unsubscribe send an email to devel

Re: mutter broken in Rawhide

2016-12-07 Thread Charles-Antoine Couret
g functional release. Of course, not recommended for end users, but with functional GUI or software... Regards, Charles-Antoine Couret ___ devel mailing list -- devel@lists.fedoraproject.org To unsubscribe send an email to devel-le...@lists.fedoraproject.org

Re: GNOME Shell not working on Fedora Rawhide?

2016-12-05 Thread Charles-Antoine Couret
Hello, Same issue here, the cursor is visible but GDM is not displayed. TTY works correctly, to upgrade the system or to do something. Did you fill a bug in BugZilla about that? Regards, Charles-Antoine Couret ___ test mailing list -- test

[PATCH v7 2/2] Add GS1662 driver, a video serializer

2016-09-15 Thread Charles-Antoine Couret
You can read datasheet here: http://www.c-dis.net/media/871/GS1662_Datasheet.pdf It's a component which supports HD and SD CEA or SDI formats to SDI output. It's configured through SPI bus. GS1662 driver is implemented as v4l2 subdev. Signed-off-by: Charles-Antoine Couret <charles-antoine.

[PATCH v7 1/2] SDI: add flag for SDI formats and SMPTE 125M definition

2016-09-15 Thread Charles-Antoine Couret
Adding others generic flags, which could be used by many components like GS1662. Signed-off-by: Charles-Antoine Couret <charles-antoine.cou...@nexvision.fr> --- drivers/media/v4l2-core/v4l2-dv-timings.c | 11 +++ include/uapi/linux/v4l2-dv-timings.h | 12 includ

[PATCH v7 0/2] Add GS1662 driver

2016-09-15 Thread Charles-Antoine Couret
in the MAINTAINERS file Charles-Antoine Couret (2): SDI: add flag for SDI formats and SMPTE 125M definition Add GS1662 driver, a video serializer MAINTAINERS | 7 + drivers/media/Kconfig | 1 + drivers/media/Makefile| 2

[PATCH v3] V4L2: Add documentation for SDI timings and related flags

2016-09-15 Thread Charles-Antoine Couret
Describe new needed constants defined by SDI format. Signed-off-by: Charles-Antoine Couret <charles-antoine.cou...@nexvision.fr> --- Documentation/media/uapi/v4l/vidioc-enuminput.rst | 31 +- .../media/uapi/v4l/vidioc-g-dv-timings.rst | 15 +++ 2

[PATCH v6 0/2] Add GS1662 driver

2016-09-15 Thread Charles-Antoine Couret
SMPTE-125M timings to be compliant to standard Charles-Antoine Couret (2): SDI: add flag for SDI formats and SMPTE 125M definition Add GS1662 driver, a video serializer drivers/media/Kconfig | 1 + drivers/media/Makefile| 2 +- drivers/media/spi

[PATCH v6 2/2] Add GS1662 driver, a video serializer

2016-09-15 Thread Charles-Antoine Couret
You can read datasheet here: http://www.c-dis.net/media/871/GS1662_Datasheet.pdf It's a component which supports HD and SD CEA or SDI formats to SDI output. It's configured through SPI bus. GS1662 driver is implemented as v4l2 subdev. Signed-off-by: Charles-Antoine Couret <charles-antoine.

[PATCH v6 1/2] SDI: add flag for SDI formats and SMPTE 125M definition

2016-09-15 Thread Charles-Antoine Couret
Adding others generic flags, which could be used by many components like GS1662. Signed-off-by: Charles-Antoine Couret <charles-antoine.cou...@nexvision.fr> --- drivers/media/v4l2-core/v4l2-dv-timings.c | 11 +++ include/uapi/linux/v4l2-dv-timings.h | 12 includ

Re: [PATCH v2] V4L2: Add documentation for SDI timings and related flags

2016-09-07 Thread Charles-Antoine Couret
Le 12/08/2016 à 15:17, Hans Verkuil a écrit : > On 08/04/2016 05:39 PM, Charles-Antoine Couret wrote: > > A commit log is missing here. Yeah I will fix that. >> diff --git a/Documentation/media/uapi/v4l/vidioc-g-dv-timings.rst >> b/Documentation/media/uapi/v4l/vidioc-g-dv

[U-Boot] Bug in CRC32 (maybe a overflow effect)

2016-08-17 Thread Charles-Antoine Couret
has an issue in U-Boot for a large file / memory size. We didn't find similar reported issue. Thank you in advance if you have an idea to fix or identify that. Have a nice day. Regards. Charles-Antoine Couret ___ U-Boot mailing list U-Boot@lists.denx.de

[PATCH v5 0/2] Add GS1662 driver

2016-08-04 Thread Charles-Antoine Couret
SMPTE-125M timings to be compliant to standard Charles-Antoine Couret (2): SDI: add flag for SDI formats and SMPTE 125M definition Add GS1662 driver, a video serializer drivers/media/Kconfig | 1 + drivers/media/Makefile| 2 +- drivers/media/spi

Re: [PATCH] V4L2: Add documentation for SDI timings and related flags

2016-08-04 Thread Charles-Antoine Couret
e right about this. In SMPTE 125M (I like this standard :D), some "frontporchs" or similar values are available. So, I can precise that in the documentation and fix SMPTE 125M definition to take this into account. Thank you very much. Regards, Charles-Antoine Couret -- To un

[PATCH v5 2/2] Add GS1662 driver, a video serializer

2016-08-04 Thread Charles-Antoine Couret
You can read datasheet here: http://www.c-dis.net/media/871/GS1662_Datasheet.pdf It's a component which supports HD and SD CEA or SDI formats to SDI output. It's configured through SPI bus. GS1662 driver is implemented as v4l2 subdev. Signed-off-by: Charles-Antoine Couret <charles-antoine.

[PATCH v5 1/2] SDI: add flag for SDI formats and SMPTE 125M definition

2016-08-04 Thread Charles-Antoine Couret
Adding others generic flags, which could be used by many components like GS1662. Signed-off-by: Charles-Antoine Couret <charles-antoine.cou...@nexvision.fr> --- drivers/media/v4l2-core/v4l2-dv-timings.c | 11 +++ include/uapi/linux/v4l2-dv-timings.h | 12 includ

[PATCH v2] V4L2: Add documentation for SDI timings and related flags

2016-08-04 Thread Charles-Antoine Couret
Signed-off-by: Charles-Antoine Couret <charles-antoine.cou...@nexvision.fr> --- Documentation/media/uapi/v4l/vidioc-enuminput.rst | 31 +- .../media/uapi/v4l/vidioc-g-dv-timings.rst | 16 +++ 2 files changed, 40 insertions(+), 7 deletions(-) diff

[PATCH] V4L2: Add documentation for SDI timings and related flags

2016-07-21 Thread Charles-Antoine Couret
Signed-off-by: Charles-Antoine Couret <charles-antoine.cou...@nexvision.fr> --- Documentation/media/uapi/v4l/vidioc-enuminput.rst | 31 +- .../media/uapi/v4l/vidioc-g-dv-timings.rst | 15 +++ 2 files changed, 39 insertions(+), 7 deletions(-) diff

[PATCH v4 1/2] SDI: add flag for SDI formats and SMPTE 125M definition

2016-07-21 Thread Charles-Antoine Couret
Adding others generic flags, which could be used by many components like GS1662. Signed-off-by: Charles-Antoine Couret <charles-antoine.cou...@nexvision.fr> --- drivers/media/v4l2-core/v4l2-dv-timings.c | 11 +++ include/uapi/linux/v4l2-dv-timings.h | 12 includ

[PATCH v4 2/2] Add GS1662 driver, a video serializer

2016-07-21 Thread Charles-Antoine Couret
You can read datasheet here: http://www.c-dis.net/media/871/GS1662_Datasheet.pdf It's a component which supports HD and SD CEA or SDI formats to SDI output. It's configured through SPI bus. GS1662 driver is implemented as v4l2 subdev. Signed-off-by: Charles-Antoine Couret <charles-antoine.

[PATCH v4 0/2] Add GS1662 driver

2016-07-21 Thread Charles-Antoine Couret
V4L2_DV_FIRST_FIELD_EXTRA_LINE to V4L2_DV_FL_FIRST_FIELD_EXTRA_LINE * change V4L2_DV_FL_FIRST_FIELD_EXTRA_LINE value and comments Charles-Antoine Couret (2): SDI: add flag for SDI formats and SMPTE 125M definition Add GS1662 driver, a video serializer Charles-Antoine Couret (2): SDI

[PATCH v3 1/2] SDI: add flag for SDI formats and SMPTE 125M definition

2016-07-21 Thread Charles-Antoine Couret
Adding others generic flags, which could be used by many components like GS1662. Signed-off-by: Charles-Antoine Couret <charles-antoine.cou...@nexvision.fr> --- drivers/media/v4l2-core/v4l2-dv-timings.c | 11 +++ include/uapi/linux/v4l2-dv-timings.h | 12 includ

[PATCH v3 2/2] Add GS1662 driver, a video serializer

2016-07-21 Thread Charles-Antoine Couret
You can read datasheet here: http://www.c-dis.net/media/871/GS1662_Datasheet.pdf It's a component which supports HD and SD CEA or SDI formats to SDI output. It's configured through SPI bus. GS1662 driver is implemented as v4l2 subdev. Signed-off-by: Charles-Antoine Couret <charles-antoine.

[PATCH v3 0/2] Add GS1662 driver

2016-07-21 Thread Charles-Antoine Couret
* additional comments * timings->pad checking * fix configuration dependencies Charles-Antoine Couret (2): SDI: add flag for SDI formats and SMPTE 125M definition Add GS1662 driver, a video serializer drivers/media/Kconfig | 1 + drivers/me

[PATCH v6 4/4] Marvell phy: add functions to suspend and resume both interfaces: fiber and copper links.

2016-07-19 Thread Charles-Antoine Couret
These functions used standards registers in a different page for both interfaces: copper and fiber. Reviewed-by: Andrew Lunn <and...@lunn.ch> Signed-off-by: Charles-Antoine Couret <charles-antoine.cou...@nexvision.fr> --- drivers/net/phy/ma

[PATCH v6 3/4] Marvell phy: add configuration of autonegociation for fiber link.

2016-07-19 Thread Charles-Antoine Couret
To be correctly initilized, the fiber interface needs to be configured via autonegociation registers which use some customs options or registers. Reviewed-by: Andrew Lunn <and...@lunn.ch> Signed-off-by: Charles-Antoine Couret <charles-antoine.cou...@nexvision.fr> --- drivers/net/p

[PATCH v6 1/4] Marvell phy: check link status in case of fiber link.

2016-07-19 Thread Charles-Antoine Couret
with Marvell 88E1512. Reviewed-by: Andrew Lunn <and...@lunn.ch> Signed-off-by: Charles-Antoine Couret <charles-antoine.cou...@nexvision.fr> --- drivers/net/phy/marvell.c | 153 ++ 1 file changed, 141 insertions(+), 12 deletions(-) diff --git a/dri

[PATCH v6 0/4] Marvell phy: fiber interface configuration

2016-07-19 Thread Charles-Antoine Couret
Another patchset to manage correctly the fiber link for some concerned Marvell's phy like 88E1512. This patchset fixed the commit log for the third and last commits and a comment in the first commit. Charles-Antoine Couret (4): Marvell phy: check link status in case of fiber link. Marvell

[PATCH v6 2/4] Marvell phy: add field to get errors from fiber link.

2016-07-19 Thread Charles-Antoine Couret
Add support for the fiber receiver error counter in the statistics. Rename the current counter which is for copper errors to phy_receive_errors_copper, so it is easy to distinguish copper from fiber. Reviewed-by: Andrew Lunn <and...@lunn.ch> Signed-off-by: Charles-Antoine Couret &l

[PATCH 2/4] Marvell phy: add field to get errors from fiber link.

2016-07-18 Thread Charles-Antoine Couret
Add support for the fiber receiver error counter in the statistics. Rename the current counter which is for copper errors to phy_receive_errors_copper, so it is easy to distinguish copper from fiber. Signed-off-by: Charles-Antoine Couret <charles-antoine.cou...@nexvision.fr> --- drivers/n

[PATCH 4/4] Marvell phy: add functions to suspend and resume both interfaces: fiber and copper links.

2016-07-18 Thread Charles-Antoine Couret
Signed-off-by: Charles-Antoine Couret <charles-antoine.cou...@nexvision.fr> --- drivers/net/phy/marvell.c | 73 +-- 1 file changed, 71 insertions(+), 2 deletions(-) diff --git a/drivers/net/phy/marvell.c b/drivers/net/phy/marvell.c index e

[PATCH v5 0/4] Marvell phy: manage fiber link for some phys

2016-07-18 Thread Charles-Antoine Couret
Another patchset to manage correctly the fiber link for some concerned Marvell's phy like 88E1512. This patchset fixed the commit log for the second commit and a line from the first commit moved to the second commit. Charles-Antoine Couret (4): Marvell phy: check link status in case of fiber

[PATCH 1/4] Marvell phy: check link status in case of fiber link.

2016-07-18 Thread Charles-Antoine Couret
with Marvell 88E1512. Signed-off-by: Charles-Antoine Couret <charles-antoine.cou...@nexvision.fr> --- drivers/net/phy/marvell.c | 151 ++ 1 file changed, 140 insertions(+), 11 deletions(-) diff --git a/drivers/net/phy/marvell.c b/drivers/net/phy/marvell.c

[PATCH 3/4] Marvell phy: add configuration of autonegociation for fiber link.

2016-07-18 Thread Charles-Antoine Couret
Signed-off-by: Charles-Antoine Couret <charles-antoine.cou...@nexvision.fr> --- drivers/net/phy/marvell.c | 111 +- 1 file changed, 109 insertions(+), 2 deletions(-) diff --git a/drivers/net/phy/marvell.c b/drivers/net/phy/marvell.c index 1

[PATCH 4/4 v4] Marvell phy: add functions to suspend and resume both, interfaces: fiber and copper links.

2016-07-15 Thread Charles-Antoine Couret
>From 95a2a268629ee2778f0ad65a273d70bcf912c4b0 Mon Sep 17 00:00:00 2001 From: Charles-Antoine Couret <charles-antoine.cou...@nexvision.fr> Date: Fri, 15 Jul 2016 11:58:09 +0200 Subject: [PATCH 4/4] Marvell phy: add functions to suspend and resume both interfaces: fiber and copper links

[PATCH 1/2 v2] SDI: add flag for SDI formats and SMPTE 125M definition

2016-07-15 Thread Charles-Antoine Couret
>From c6b157259081bd40d881a5c642dd1a4a07195ca5 Mon Sep 17 00:00:00 2001 From: Charles-Antoine Couret <charles-antoine.cou...@nexvision.fr> Date: Fri, 15 Jul 2016 15:04:57 +0200 Subject: [PATCH 1/2] SDI: add flag for SDI formats and SMPTE 125M definition Adding others generic flags, wh

[PATCH 1/2] SDI: add flag for SDI formats and SMPTE 125M definition

2016-07-15 Thread Charles-Antoine Couret
>From c6b157259081bd40d881a5c642dd1a4a07195ca5 Mon Sep 17 00:00:00 2001 From: Charles-Antoine Couret <charles-antoine.cou...@nexvision.fr> Date: Fri, 15 Jul 2016 15:04:57 +0200 Subject: [PATCH 1/2] SDI: add flag for SDI formats and SMPTE 125M definition Adding others generic flags, wh

[PATCH 4/4] Marvell phy: add functions to suspend and resume both interfaces

2016-07-15 Thread Charles-Antoine Couret
>From 95a2a268629ee2778f0ad65a273d70bcf912c4b0 Mon Sep 17 00:00:00 2001 From: Charles-Antoine Couret <charles-antoine.cou...@nexvision.fr> Date: Fri, 15 Jul 2016 11:58:09 +0200 Subject: [PATCH 4/4] Marvell phy: add functions to suspend and resume both interfaces: fiber and copper links

Re: [PATCH 3/4] Marvell phy: add configuration of autonegociation for fiber link.

2016-07-15 Thread Charles-Antoine Couret
Le 15/07/2016 à 16:08, Andrew Lunn a écrit : > On Fri, Jul 15, 2016 at 12:12:39PM +0200, Charles-Antoine Couret wrote: >> >From 5be52efa3f1c034c21f80850b651193d1f51a313 Mon Sep 17 00:00:00 2001 >> From: Charles-Antoine Couret <charles-antoine.cou...@nexvision.fr> >> D

[PATCH 2/2 v2] Add GS1662 driver, a video serializer

2016-07-15 Thread Charles-Antoine Couret
>From 111c02ef44dc1588891b40337fb0669fa586ec50 Mon Sep 17 00:00:00 2001 From: Charles-Antoine Couret <charles-antoine.cou...@nexvision.fr> Date: Fri, 15 Jul 2016 15:06:43 +0200 Subject: [PATCH 2/2] Add GS1662 driver, a video serializer You can read datasheet here: http://www.c-dis.net/

[PATCH 3/4] Marvell phy: add configuration of autonegociation for fiber link.

2016-07-15 Thread Charles-Antoine Couret
>From 5be52efa3f1c034c21f80850b651193d1f51a313 Mon Sep 17 00:00:00 2001 From: Charles-Antoine Couret <charles-antoine.cou...@nexvision.fr> Date: Fri, 15 Jul 2016 11:57:25 +0200 Subject: [PATCH 3/4] Marvell phy: add configuration of autonegociation for fiber link. Signed-off-by: Charle

[PATCH 1/4 v4] Marvell phy: check link status in case of fiber link.

2016-07-15 Thread Charles-Antoine Couret
Hello, It's my 4rd patch set for this feature. Thanks to comment my work. :) >From 354c25b138f8da9a1f4f451698b3a9122f41717c Mon Sep 17 00:00:00 2001 From: Charles-Antoine Couret <charles-antoine.cou...@nexvision.fr> Date: Fri, 15 Jul 2016 11:51:48 +0200 Subject: [PATCH 1/4] Marvell p

[PATCH 2/4 v4] Marvell phy: add field to get errors from fiber link.

2016-07-15 Thread Charles-Antoine Couret
>From 6244e234cced4b3e5ee1f0ab735c4bd52b7ed0a4 Mon Sep 17 00:00:00 2001 From: Charles-Antoine Couret <charles-antoine.cou...@nexvision.fr> Date: Fri, 15 Jul 2016 11:56:12 +0200 Subject: [PATCH 2/4] Marvell phy: add field to get errors from fiber link. Phy not concerned by fiber link don'

Re: GDM and SELinux…

2016-07-14 Thread Charles-Antoine Couret
Hello, I have the same issue with Fedora Rawhide up to date. Regards. Chaarles-Antoine Couret -- test mailing list test@lists.fedoraproject.org To unsubscribe: https://lists.fedoraproject.org/admin/lists/test@lists.fedoraproject.org

Re: [PATCH v3] Marvell phy: add fiber status check and configuration for some phys

2016-07-13 Thread Charles-Antoine Couret
>>>> + err = genphy_resume(phydev); >>>> + if (err < 0) >>>> + goto error; >>>> + >>>> + /* Then, the copper link */ >>>> + err = phy_write(phydev, MII_MARVELL_PHY_PAGE, MII_M_COPPER); >>>> + if (err < 0) >>>> + goto error; >>>> + >>>> + return genphy_resume(phydev); >>> >>> Should it be resumed twice? Or just once at the end? Same question >>> for suspend. >> >> I don't understand your question. > > You call genphy_resume(phydev) twice. Once is sufficient. Yes, but it's normal because each interface could be suspended or resumed independently. genphy_* functions use BMCR register which are identical between fiber and copper link. But each link has its own register to change. Thank you. Regards. Charles-Antoine Couret

Re: [PATCH v3] Marvell phy: add fiber status check and configuration for some phys

2016-07-13 Thread Charles-Antoine Couret
(err < 0) >> +goto error; >> + >> +/* Then, the copper link */ >> +err = phy_write(phydev, MII_MARVELL_PHY_PAGE, MII_M_COPPER); >> +if (err < 0) >> + goto error; >> + >> +return genphy_resume(phydev); > > Should it be resumed twice? Or just once at the end? Same question > for suspend. I don't understand your question. Each interface are resumed / suspended once by these functions. > >> @@ -1130,6 +1416,11 @@ static u64 marvell_get_stat(struct phy_device >> *phydev, int i) >> int err, oldpage, val; >> u64 ret; >> >> +if (!(phydev->supported & SUPPORTED_FIBRE)) { >> +if (strstr(marvell_hw_stats[i].string, "fiber")) >> +return 0; > > I think a better solution is for marvell_get_sset_count() to return 2 > or 3 depending on phydev->supported & SUPPORTED_FIBRE. Ok. Thanks for all of your comments, I will fix that. However, I need some additional answers to do that entirely. :) Regards. Charles-Antoine Couret

Re: [PATCH v3] Marvell phy: add fiber status check and configuration for some phys

2016-07-12 Thread Charles-Antoine Couret
>> { "phy_idle_errors", 0, 10, 8 }, >> }; > > I think we should also rename phy_receive_errors to > phy_receive_errors_copper. I agree with you. I will fix that too. Thanks. Charles-Antoine Couret

[PATCH v3] Marvell phy: add fiber status check and configuration for some phys

2016-07-12 Thread Charles-Antoine Couret
Thank you in advance. Regards. Charles-Antoine Couret >From 4ca5935f8aa97c3ba02cb27e970e1bcf248aed18 Mon Sep 17 00:00:00 2001 From: Charles-Antoine Couret <charles-antoine.cou...@nexvision.fr> Date: Fri, 1 Apr 2016 16:16:35 +0200 Subject: [PATCH] Marvell phy: add fiber status check for som

[RFC] SDI timings and API

2016-06-01 Thread Charles-Antoine Couret
functions about timings in the V4L2 API... It was a RFC based on my difficulties to write a driver for GS1662. Maybe others components or elements have other issues and need a different solution. Thanks in advance. Regards, Charles-Antoine Couret -- To unsubscribe from this list: send the line

Re: FWD: [PATCH v2] Marvell phy: add fiber status check for some components

2016-05-27 Thread Charles-Antoine Couret
Hello, I'm sorry to repost that, but after one month, I need a answer to continue to imrpove my patch in the right direction. :) Thank you in advance. Regards. Charles-Antoine Couret Le 29/04/2016 à 10:28, Charles-Antoine Couret a écrit : > Le 11/04/2016 à 21:47, Florian Fainelli a éc

Re: Announcing the release of Fedora 24 Beta!

2016-05-10 Thread Charles-Antoine Couret
read it to mean that that combination is > on hold, with the pages not having been updated for two > years. Are there other sources of information for that fea- > ture? > Hi, The official feature page for Fedora 24 is here: https://fedoraproject.org/wiki/Changes/OpenShiftOrigin Regards. Char

Re: [PATCH v2] Add GS driver (SPI video serializer family)

2016-05-04 Thread Charles-Antoine Couret
he g_input_status video op. I just realized > that > that is missing. It is used to fill in the status field when calling > VIDIOC_ENUMINPUTS. Ok, I will add that. Thanks. > Remember that today there are no SDI drivers in the kernel. So you and nohous > are the first > that

Re: [PATCH v2] Add GS driver (SPI video serializer family)

2016-05-04 Thread Charles-Antoine Couret
Le 04/05/2016 à 13:41, Hans Verkuil a écrit : > Hi Charles-Antoine, Hi, > On 04/28/2016 04:10 PM, Charles-Antoine Couret wrote: >> But this component family support CEA standards and other >> (SMPTE XXXM in fact). V4L2 seems oriented to manage CEA or >> VGA formats. So,

Re: FWD: [PATCH v2] Marvell phy: add fiber status check for some components

2016-04-29 Thread Charles-Antoine Couret
le the port change in phy_ethtool_sset function. But, the datasheet seems to disagree with this method. Finally, what do I have to do? I continue my previous way or your suggestion? I prefer to respect the datasheet, but if it's better for you to follow the other way, I will implement that. Thank you in advance and have a nice day. Regards, Charles-Antoine Couret

[PATCH v2] Add GS driver (SPI video serializer family)

2016-04-28 Thread Charles-Antoine Couret
deprecated. But for this component, it should be the right way to reset in auto-detection mode instead of "timings forced by user". Thank you in advance for your comments. Regards. Charles-Antoine Couret >From a1bc59b8b18dc75bbf3a70483f57d4ccd190b5f9 Mon Sep 17 00:00:00 2001 From: Ch

Re: [PATCH] Add GS1662 driver (a SPI video serializer)

2016-04-15 Thread Charles-Antoine Couret
date all behaviours. Thanks. Charles-Antoine Couret -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: FWD: [PATCH v2] Marvell phy: add fiber status check for some components

2016-04-13 Thread Charles-Antoine Couret
Le 11/04/2016 21:47, Florian Fainelli a écrit : > On 04/04/16 06:25, Andrew Lunn wrote: >>> >From 564b767163d19355a3b5efaad195e93796570c71 Mon Sep 17 00:00:00 2001 >>> From: Charles-Antoine Couret <charles-antoine.cou...@nexvision.fr> >>> Date: Fri, 1 Apr

Re: FWD: [PATCH v2] Marvell phy: add fiber status check for some components

2016-04-08 Thread Charles-Antoine Couret
Le 04/04/2016 15:25, Andrew Lunn a écrit : > Should we be using the old mechanism to swap between TP, BNC and AUI > to swap between copper and fibre? > >Andrew What is this method ? A specific ioctl ? Regards, Charles-Antoine

Re: kernel-tests: [PATCH] Add script shell wrapper to check if the wanted test was not tested for current version

2016-04-05 Thread Charles-Antoine Couret
Patch updated From 8627ee25c1f95e527d6b9a37e13a19440069889c Mon Sep 17 00:00:00 2001 From: Charles-Antoine Couret <charles-antoine.cou...@nexvision.fr> Date: Mon, 4 Apr 2016 10:34:33 +0200 Subject: [PATCH] Add option to check duplication of current test before to e

Re: kernel-tests: [PATCH] Add script shell wrapper to check if the wanted test was not tested for current version

2016-04-04 Thread Charles-Antoine Couret
r this application? Thanks, Charles-Antoine Couret ___ kernel mailing list kernel@lists.fedoraproject.org http://lists.fedoraproject.org/admin/lists/kernel@lists.fedoraproject.org

Re: kernel-tests: [PATCH] Add script shell wrapper to check if the wanted test was not tested for current version

2016-04-04 Thread Charles-Antoine Couret
From dda596d968b7e09d821d842129b38a2771f63ebb Mon Sep 17 00:00:00 2001 From: Charles-Antoine Couret <charles-antoine.cou...@nexvision.fr> Date: Mon, 4 Apr 2016 10:34:33 +0200 Subject: [PATCH] Add script shell wrapper to check if the wanted test was not tested for current version. It

Re: kernel-tests: [PATCH] Add script shell wrapper to check if the wanted test was not tested for current version

2016-04-04 Thread Charles-Antoine Couret
Le 04/04/2016 15:11, Justin Forbes a écrit : > The patch seems to be MIA, forgot to attach maybe? > > Justin Curious, with GMail interface I see the patch. I will test with Thunderbird. ;) Regards, Charles-Antoine ___ kernel mailing list

[PATCH v2] Marvell phy: add fiber status check for some components

2016-04-04 Thread Charles-Antoine Couret
Hi, I took into account previous remark from Andrew to return in MII_M_COPPER page in all cases. I completed the description of patch. Thanks for all. Regards, Charles-Antoine Couret >From 564b767163d19355a3b5efaad195e93796570c71 Mon Sep 17 00:00:00 2001 From: Charles-Antoine Couret <c

Re: [PATCH] Add GS1662 driver (a SPI video serializer)

2016-04-04 Thread Charles-Antoine Couret
Le 01/04/2016 21:11, Jean-Michel Hautbois a écrit : > Hi Charles-Antoine, Hi, > FIrst of all, we, on the ML, do prefer reading patches as sent by git > send-email tool. Ok, I will configure that. > Next, you should add a complete description to your commit. Just > having an object and a

kernel-tests: [PATCH] Add script shell wrapper to check if the wanted test was not tested for current version

2016-04-04 Thread Charles-Antoine Couret
the wanted test. I don't merge this script into runtests.sh to allow multiple executions of the test if needed (although it is useless, I think). Regards, Charles-Antoine Couret ___ kernel mailing list kernel@lists.fedoraproject.org http

Re: [PATCH] Marvell phy: add fiber status check for some components

2016-04-04 Thread Charles-Antoine Couret
Hi, > Shouldn't you return to page 0, i.e. MII_M_COPPER, under all > conditions? I return marvell_read_status() which returns 0 if it hasn't error during the process. In case of right conditions, my function returns 0 for COPPER part (and FIBER part too). It doesn't change the value

[PATCH] Marvell phy: add fiber status check for some components

2016-04-01 Thread Charles-Antoine Couret
>From a5a7a9828511ff6a522cf742109768207ff89929 Mon Sep 17 00:00:00 2001 From: Charles-Antoine Couret <charles-antoine.cou...@nexvision.fr> Date: Fri, 1 Apr 2016 16:16:35 +0200 Subject: [PATCH] Marvell phy: add fiber status check for some components This patch is not tested with all Marv

[PATCH] Marvell phy: add fiber status check for some components

2016-04-01 Thread Charles-Antoine Couret
>From a5a7a9828511ff6a522cf742109768207ff89929 Mon Sep 17 00:00:00 2001 From: Charles-Antoine Couret <charles-antoine.cou...@nexvision.fr> Date: Fri, 1 Apr 2016 16:16:35 +0200 Subject: [PATCH] Marvell phy: add fiber status check for some components This patch is not tested with all Marv

Fwd: [PATCH] Add GS1662 driver (a SPI video serializer)

2016-04-01 Thread Charles-Antoine Couret
>From 65b48bf1c77801c210bf93c07bc7f513efdbcbb5 Mon Sep 17 00:00:00 2001 From: Charles-Antoine Couret <charles-antoine.cou...@nexvision.fr> Date: Fri, 1 Apr 2016 17:19:26 +0200 Subject: [PATCH] Add GS1662 driver (a SPI video serializer) Signed-off-by: Charles-Antoine Couret <charles

[PATCH] Add GS1662 driver (a SPI video serializer)

2016-04-01 Thread Charles-Antoine Couret
>From 65b48bf1c77801c210bf93c07bc7f513efdbcbb5 Mon Sep 17 00:00:00 2001 From: Charles-Antoine Couret <charles-antoine.cou...@nexvision.fr> Date: Fri, 1 Apr 2016 17:19:26 +0200 Subject: [PATCH] Add GS1662 driver (a SPI video serializer) Signed-off-by: Charles-Antoine Couret <charles

  1   2   >