-
Notifications
You must be signed in to change notification settings - Fork 14
imx6ull: configuration changes to multiple drivers #611
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
jmaksymowicz
wants to merge
4
commits into
master
Choose a base branch
from
jmaksymowicz/SEN-40
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
eacbdbf
libimx6ull-i2c: add mux configuration options
jmaksymowicz 0942f5f
imx6ull-uart: add mux configuration options
jmaksymowicz 2f1a078
imx6ull-ecspi: apply clang-format
jmaksymowicz 7e36d63
imx6ull-ecspi: add mux configuration options
jmaksymowicz File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,98 @@ | ||
| /* | ||
| * Phoenix-RTOS | ||
| * | ||
| * Operating system kernel | ||
| * | ||
| * i.MX6ULL I2C driver | ||
| * | ||
| * Default pin definitions | ||
| * | ||
| * Copyright 2025 Phoenix Systems | ||
| * Author: Jacek Maksymowicz | ||
| * | ||
| * This file is part of Phoenix-RTOS. | ||
| * | ||
| * %LICENSE% | ||
| */ | ||
|
|
||
| #ifndef _IMX6ULL_I2C_DEF_H_ | ||
| #define _IMX6ULL_I2C_DEF_H_ | ||
|
|
||
| #ifndef CONFIG_I2C1_SCL_MUX_PAD | ||
| #define CONFIG_I2C1_SCL_MUX_PAD mux_gpio1_02 | ||
| #endif | ||
| #ifndef CONFIG_I2C1_SCL_MUX_VAL | ||
| #define CONFIG_I2C1_SCL_MUX_VAL 0 | ||
| #endif | ||
| #ifndef CONFIG_I2C1_SDA_MUX_PAD | ||
| #define CONFIG_I2C1_SDA_MUX_PAD mux_gpio1_03 | ||
| #endif | ||
| #ifndef CONFIG_I2C1_SDA_MUX_VAL | ||
| #define CONFIG_I2C1_SDA_MUX_VAL 0 | ||
| #endif | ||
|
|
||
| #ifndef CONFIG_I2C2_SCL_MUX_PAD | ||
| #define CONFIG_I2C2_SCL_MUX_PAD mux_gpio1_00 | ||
| #endif | ||
| #ifndef CONFIG_I2C2_SCL_MUX_VAL | ||
| #define CONFIG_I2C2_SCL_MUX_VAL 0 | ||
| #endif | ||
| #ifndef CONFIG_I2C2_SDA_MUX_PAD | ||
| #define CONFIG_I2C2_SDA_MUX_PAD mux_gpio1_01 | ||
| #endif | ||
| #ifndef CONFIG_I2C2_SDA_MUX_VAL | ||
| #define CONFIG_I2C2_SDA_MUX_VAL 0 | ||
| #endif | ||
|
|
||
| #ifndef CONFIG_I2C3_SCL_MUX_PAD | ||
| #define CONFIG_I2C3_SCL_MUX_PAD mux_lcd_d1 | ||
| #endif | ||
| #ifndef CONFIG_I2C3_SCL_MUX_VAL | ||
| #define CONFIG_I2C3_SCL_MUX_VAL 4 | ||
| #endif | ||
| #ifndef CONFIG_I2C3_SDA_MUX_PAD | ||
| #define CONFIG_I2C3_SDA_MUX_PAD mux_lcd_d0 | ||
| #endif | ||
| #ifndef CONFIG_I2C3_SDA_MUX_VAL | ||
| #define CONFIG_I2C3_SDA_MUX_VAL 4 | ||
| #endif | ||
|
|
||
| #ifndef CONFIG_I2C4_SCL_MUX_PAD | ||
| #define CONFIG_I2C4_SCL_MUX_PAD mux_lcd_d3 | ||
| #endif | ||
| #ifndef CONFIG_I2C4_SCL_MUX_VAL | ||
| #define CONFIG_I2C4_SCL_MUX_VAL 4 | ||
| #endif | ||
| #ifndef CONFIG_I2C4_SDA_MUX_PAD | ||
| #define CONFIG_I2C4_SDA_MUX_PAD mux_lcd_d2 | ||
| #endif | ||
| #ifndef CONFIG_I2C4_SDA_MUX_VAL | ||
| #define CONFIG_I2C4_SDA_MUX_VAL 4 | ||
| #endif | ||
|
|
||
| #ifndef CONFIG_I2C1_SCL_ISEL | ||
| #define CONFIG_I2C1_SCL_ISEL 0 | ||
| #endif | ||
| #ifndef CONFIG_I2C1_SDA_ISEL | ||
| #define CONFIG_I2C1_SDA_ISEL 1 | ||
| #endif | ||
| #ifndef CONFIG_I2C2_SCL_ISEL | ||
| #define CONFIG_I2C2_SCL_ISEL 1 | ||
| #endif | ||
| #ifndef CONFIG_I2C2_SDA_ISEL | ||
| #define CONFIG_I2C2_SDA_ISEL 1 | ||
| #endif | ||
| #ifndef CONFIG_I2C3_SCL_ISEL | ||
| #define CONFIG_I2C3_SCL_ISEL 2 | ||
| #endif | ||
| #ifndef CONFIG_I2C3_SDA_ISEL | ||
| #define CONFIG_I2C3_SDA_ISEL 2 | ||
| #endif | ||
| #ifndef CONFIG_I2C4_SCL_ISEL | ||
| #define CONFIG_I2C4_SCL_ISEL 2 | ||
| #endif | ||
| #ifndef CONFIG_I2C4_SDA_ISEL | ||
| #define CONFIG_I2C4_SDA_ISEL 2 | ||
| #endif | ||
|
|
||
| #endif /* _IMX6ULL_I2C_DEF_H_ */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These helper macros (
XCAT2,PCTL) are also defined inlibecspi.candimx6ull-uart.c. To avoid code duplication and improve maintainability, consider moving them to a common header file, for example a new platform utilities header or an existing one like<phoenix/arch/armv7a/imx6ull/imx6ull.h>.