Skip to content

sama7d65_curiosity: Fix reversed I2C0 GPIO pin configuration. #8

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions sama7d65_curiosity/sama7d65_curiosity_lvds.dtso
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@
pinctrl-names = "default", "gpio";
pinctrl-0 = <&pinctrl_i2c0_default>;
pinctrl-1 = <&pinctrl_i2c0_gpio>;
sda-gpios = <&pioa PIN_PC6 GPIO_ACTIVE_HIGH>;
scl-gpios = <&pioa PIN_PC7 (GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN)>;
sda-gpios = <&pioa PIN_PC7 GPIO_ACTIVE_HIGH>;
scl-gpios = <&pioa PIN_PC6 (GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN)>;
i2c-analog-filter;
i2c-digital-filter;
i2c-digital-filter-width-ns = <35>;
Expand Down
4 changes: 2 additions & 2 deletions sama7d65_curiosity/sama7d65_curiosity_mipi.dtso
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@
pinctrl-names = "default", "gpio";
pinctrl-0 = <&pinctrl_i2c0_default>;
pinctrl-1 = <&pinctrl_i2c0_gpio>;
sda-gpios = <&pioa PIN_PC6 GPIO_ACTIVE_HIGH>;
scl-gpios = <&pioa PIN_PC7 (GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN)>;
sda-gpios = <&pioa PIN_PC7 GPIO_ACTIVE_HIGH>;
scl-gpios = <&pioa PIN_PC6 (GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN)>;
i2c-analog-filter;
i2c-digital-filter;
i2c-digital-filter-width-ns = <35>;
Expand Down