All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/8] wic: Move all wks files to root layer directory
@ 2017-09-29 19:27 Otavio Salvador
  2017-09-29 19:27 ` [PATCH 2/8] wic: Force the use of 'msdos' partition tables Otavio Salvador
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: Otavio Salvador @ 2017-09-29 19:27 UTC (permalink / raw)
  To: meta-freescale Mailing List; +Cc: Otavio Salvador

The wic looks for wks files in many places. The root layer directory
is one of those and makes much easier to find the wks files for
reference and use.

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---

 {scripts/lib/wic/canned-wks => wic}/imx-barebox.wks   | 0
 {scripts/lib/wic/canned-wks => wic}/imx-uboot-spl.wks | 0
 {scripts/lib/wic/canned-wks => wic}/imx-uboot.wks     | 0
 3 files changed, 0 insertions(+), 0 deletions(-)
 rename {scripts/lib/wic/canned-wks => wic}/imx-barebox.wks (100%)
 rename {scripts/lib/wic/canned-wks => wic}/imx-uboot-spl.wks (100%)
 rename {scripts/lib/wic/canned-wks => wic}/imx-uboot.wks (100%)

diff --git a/scripts/lib/wic/canned-wks/imx-barebox.wks b/wic/imx-barebox.wks
similarity index 100%
rename from scripts/lib/wic/canned-wks/imx-barebox.wks
rename to wic/imx-barebox.wks
diff --git a/scripts/lib/wic/canned-wks/imx-uboot-spl.wks b/wic/imx-uboot-spl.wks
similarity index 100%
rename from scripts/lib/wic/canned-wks/imx-uboot-spl.wks
rename to wic/imx-uboot-spl.wks
diff --git a/scripts/lib/wic/canned-wks/imx-uboot.wks b/wic/imx-uboot.wks
similarity index 100%
rename from scripts/lib/wic/canned-wks/imx-uboot.wks
rename to wic/imx-uboot.wks
-- 
2.14.1



^ permalink raw reply	[flat|nested] 8+ messages in thread

* [PATCH 2/8] wic: Force the use of 'msdos' partition tables
  2017-09-29 19:27 [PATCH 1/8] wic: Move all wks files to root layer directory Otavio Salvador
@ 2017-09-29 19:27 ` Otavio Salvador
  2017-09-29 19:27 ` [PATCH 3/8] wic: Add a i.MX bootpart templates Otavio Salvador
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Otavio Salvador @ 2017-09-29 19:27 UTC (permalink / raw)
  To: meta-freescale Mailing List; +Cc: Otavio Salvador

Some old SoC has problems to read GPT partition tables so we use
'msdos' as default here and if some vendor wants to override it, it
can still be done in their wks files.

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---

 wic/imx-barebox.wks   | 2 ++
 wic/imx-uboot-spl.wks | 2 ++
 wic/imx-uboot.wks     | 2 ++
 3 files changed, 6 insertions(+)

diff --git a/wic/imx-barebox.wks b/wic/imx-barebox.wks
index 0672cbb2..596583d3 100644
--- a/wic/imx-barebox.wks
+++ b/wic/imx-barebox.wks
@@ -15,3 +15,5 @@
 part barebox --source rawcopy --sourceparams="file=barebox.bin,skip=512" --ondisk mmcblk --no-table
 part bareboxenv --source rawcopy --sourceparams="file=bareboxenv.bin" --ondisk mmcblk --no-table --align 512
 part / --source rootfs --ondisk mmcblk --fstype=ext4 --label root --align 4096
+
+bootloader --ptable msdos
diff --git a/wic/imx-uboot-spl.wks b/wic/imx-uboot-spl.wks
index d32afc90..e7b3beed 100644
--- a/wic/imx-uboot-spl.wks
+++ b/wic/imx-uboot-spl.wks
@@ -15,3 +15,5 @@
 part SPL --source rawcopy --sourceparams="file=SPL" --ondisk mmcblk --no-table --align 1
 part u-boot --source rawcopy --sourceparams="file=u-boot.img" --ondisk mmcblk --no-table --align 69
 part / --source rootfs --ondisk mmcblk --fstype=ext4 --label root --align 4096
+
+bootloader --ptable msdos
diff --git a/wic/imx-uboot.wks b/wic/imx-uboot.wks
index d3609771..60870c34 100644
--- a/wic/imx-uboot.wks
+++ b/wic/imx-uboot.wks
@@ -14,3 +14,5 @@
 #
 part u-boot --source rawcopy --sourceparams="file=u-boot.imx" --ondisk mmcblk --no-table --align 1
 part / --source rootfs --ondisk mmcblk --fstype=ext4 --label root --align 4096
+
+bootloader --ptable msdos
-- 
2.14.1



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 3/8] wic: Add a i.MX bootpart templates
  2017-09-29 19:27 [PATCH 1/8] wic: Move all wks files to root layer directory Otavio Salvador
  2017-09-29 19:27 ` [PATCH 2/8] wic: Force the use of 'msdos' partition tables Otavio Salvador
@ 2017-09-29 19:27 ` Otavio Salvador
  2017-09-29 19:27 ` [PATCH 4/8] imx-base.inc: Add basic settings for i.MX25 Otavio Salvador
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Otavio Salvador @ 2017-09-29 19:27 UTC (permalink / raw)
  To: meta-freescale Mailing List; +Cc: Otavio Salvador

This includes the wic templates which use a separated boot
partition. This allow for easier migration from the new deprecated
sdcard generation class.

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---

 wic/imx-uboot-bootpart.wks     | 19 +++++++++++++++++++
 wic/imx-uboot-spl-bootpart.wks | 20 ++++++++++++++++++++
 2 files changed, 39 insertions(+)
 create mode 100644 wic/imx-uboot-bootpart.wks
 create mode 100644 wic/imx-uboot-spl-bootpart.wks

diff --git a/wic/imx-uboot-bootpart.wks b/wic/imx-uboot-bootpart.wks
new file mode 100644
index 00000000..a5e0137b
--- /dev/null
+++ b/wic/imx-uboot-bootpart.wks
@@ -0,0 +1,19 @@
+# short-description: Create SD card image with a boot partition
+# long-description:
+# Create an image that can be written onto a SD card using dd for use
+# with i.MX SoC family
+# It uses u-boot
+#
+# The disk layout used is:
+#  - --------- -------------- --------------
+# | | u-boot  |     boot     |    rootfs   |
+#  - --------- -------------- --------------
+# ^ ^         ^              ^
+# | |         |              |
+# 0 1kiB    4MiB          16MiB + rootfs + IMAGE_EXTRA_SPACE (default 10MiB)
+#
+part u-boot --source rawcopy --sourceparams="file=u-boot.imx" --ondisk mmcblk --no-table --align 1
+part /boot --source bootimg-partition --ondisk mmcblk --fstype=vfat --label boot --active --align 4096 --size 16
+part / --source rootfs --ondisk mmcblk --fstype=ext4 --label root --align 4096
+
+bootloader --ptable msdos
diff --git a/wic/imx-uboot-spl-bootpart.wks b/wic/imx-uboot-spl-bootpart.wks
new file mode 100644
index 00000000..4e16ec35
--- /dev/null
+++ b/wic/imx-uboot-spl-bootpart.wks
@@ -0,0 +1,20 @@
+# short-description: Create SD card image with a boot partition
+# long-description:
+# Create an image that can be written onto a SD card using dd for use
+# with i.MX SoC family.
+# It uses SPL and u-boot
+#
+# The disk layout used is:
+#  - ----- --------- -------------- --------------
+# | | SPL | u-boot  |    boot      |    rootfs    |
+#  - ----- --------- -------------- --------------
+# ^ ^     ^         ^              ^
+# | |     |         |              |
+# 0 1kiB  69kiB   4MiB          16MiB + rootfs + IMAGE_EXTRA_SPACE (default 10MiB)
+#
+part SPL --source rawcopy --sourceparams="file=SPL" --ondisk mmcblk --no-table --align 1
+part u-boot --source rawcopy --sourceparams="file=u-boot.img" --ondisk mmcblk --no-table --align 69
+part /boot --source bootimg-partition --ondisk mmcblk --fstype=vfat --label boot --active --align 4096 --size 16
+part / --source rootfs --ondisk mmcblk --fstype=ext4 --label root --align 4096
+
+bootloader --ptable msdos
-- 
2.14.1



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 4/8] imx-base.inc: Add basic settings for i.MX25
  2017-09-29 19:27 [PATCH 1/8] wic: Move all wks files to root layer directory Otavio Salvador
  2017-09-29 19:27 ` [PATCH 2/8] wic: Force the use of 'msdos' partition tables Otavio Salvador
  2017-09-29 19:27 ` [PATCH 3/8] wic: Add a i.MX bootpart templates Otavio Salvador
@ 2017-09-29 19:27 ` Otavio Salvador
  2017-09-29 19:27 ` [PATCH 5/8] imx-base.inc: Always use wic for i.MX25 images Otavio Salvador
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Otavio Salvador @ 2017-09-29 19:27 UTC (permalink / raw)
  To: meta-freescale Mailing List; +Cc: Otavio Salvador

The i.MX25 will always use the use-mainline-bsp override so we force
its inclusion with the override extender mechanism.

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---

 conf/machine/include/imx-base.inc | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/conf/machine/include/imx-base.inc b/conf/machine/include/imx-base.inc
index 0803c567..773819c5 100644
--- a/conf/machine/include/imx-base.inc
+++ b/conf/machine/include/imx-base.inc
@@ -54,6 +54,7 @@ DEFAULTTUNE_vf ?= "cortexa5thf-neon"
 
 INHERIT += "machine-overrides-extender"
 
+MACHINEOVERRIDES_EXTENDER_mx25  = "use-mainline-bsp"
 MACHINEOVERRIDES_EXTENDER_mx6q  = "imxipu:imxvpu:imxgpu2d:imxgpu3d"
 MACHINEOVERRIDES_EXTENDER_mx6dl = "imxpxp:imxipu:imxvpu:imxgpu2d:imxgpu3d:imxepdc"
 MACHINEOVERRIDES_EXTENDER_mx6sx = "imxpxp:imxgpu2d:imxgpu3d"
@@ -116,6 +117,7 @@ SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS_append = " \
 
 # Firmware
 MACHINE_FIRMWARE ?= ""
+MACHINE_FIRMWARE_append_mx25 = " firmware-imx-sdma-imx25"
 MACHINE_FIRMWARE_append_mx7 = " firmware-imx-epdc"
 MACHINE_FIRMWARE_append_mx6q = " firmware-imx-vpu-imx6q"
 MACHINE_FIRMWARE_append_mx6dl = " firmware-imx-vpu-imx6d firmware-imx-epdc"
@@ -128,7 +130,6 @@ MACHINE_FIRMWARE_append_use-mainline-bsp = " firmware-imx-vpu-imx6q firmware-imx
 
 # FIXME: Needs addition of firmware-imx of official BSPs
 #MACHINE_FIRMWARE_append_mx27 = " firmware-imx-vpu-imx27"
-#MACHINE_FIRMWARE_append_mx25 = " firmware-imx-sdma-imx25"
 
 MACHINE_EXTRA_RRECOMMENDS += "${MACHINE_FIRMWARE}"
 
-- 
2.14.1



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 5/8] imx-base.inc: Always use wic for i.MX25 images
  2017-09-29 19:27 [PATCH 1/8] wic: Move all wks files to root layer directory Otavio Salvador
                   ` (2 preceding siblings ...)
  2017-09-29 19:27 ` [PATCH 4/8] imx-base.inc: Add basic settings for i.MX25 Otavio Salvador
@ 2017-09-29 19:27 ` Otavio Salvador
  2017-09-29 19:27 ` [PATCH 6/8] u-boot-fslc: Bump revision to 9f164a1a01 Otavio Salvador
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Otavio Salvador @ 2017-09-29 19:27 UTC (permalink / raw)
  To: meta-freescale Mailing List; +Cc: Otavio Salvador

The i.MX25 support is new so there is no reason to extend the
dependency on the old image generation class.

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---

 conf/machine/include/imx-base.inc | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/conf/machine/include/imx-base.inc b/conf/machine/include/imx-base.inc
index 773819c5..06f93fcb 100644
--- a/conf/machine/include/imx-base.inc
+++ b/conf/machine/include/imx-base.inc
@@ -226,6 +226,16 @@ SOC_DEFAULT_IMAGE_FSTYPES_mxs = "uboot-mxsboot-sdcard sdcard.gz"
 SDCARD_ROOTFS ?= "${IMGDEPLOYDIR}/${IMAGE_NAME}.rootfs.ext4"
 IMAGE_FSTYPES ?= "${SOC_DEFAULT_IMAGE_FSTYPES}"
 
+### wic default support
+WKS_FILE_DEPENDS ?= " \
+    virtual/bootloader \
+    \
+    e2fsprogs-native \
+    bmap-tools-native \
+"
+
+SOC_DEFAULT_IMAGE_FSTYPES_mx25 = "wic.gz"
+
 SERIAL_CONSOLE = "115200 ttymxc0"
 SERIAL_CONSOLE_mxs = "115200 ttyAMA0"
 
-- 
2.14.1



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 6/8] u-boot-fslc: Bump revision to 9f164a1a01
  2017-09-29 19:27 [PATCH 1/8] wic: Move all wks files to root layer directory Otavio Salvador
                   ` (3 preceding siblings ...)
  2017-09-29 19:27 ` [PATCH 5/8] imx-base.inc: Always use wic for i.MX25 images Otavio Salvador
@ 2017-09-29 19:27 ` Otavio Salvador
  2017-09-29 19:27 ` [PATCH 7/8] linux-fslc: Add i.MX25 configuration Otavio Salvador
  2017-09-29 19:27 ` [PATCH 8/8] imx25pdk: Add machine file Otavio Salvador
  6 siblings, 0 replies; 8+ messages in thread
From: Otavio Salvador @ 2017-09-29 19:27 UTC (permalink / raw)
  To: meta-freescale Mailing List; +Cc: Otavio Salvador

This includes following changes:

9f164a1a01 mx25pdk: Change root to use a single partition layout
642e1ec971 mx25pdk: Remove duplicated define
bb8bb2c1bd mx25pdk: Use generic filesystem commands
a3581b705a imx6: disable clock command and print_cpuinfo code in SPL
555c0086e6 colibri_imx6: Avoid calling setup_display() from SPL code
0985fc630b apalis_imx6: Avoid calling setup_display() from SPL code
a01e041d10 mx6cuboxi: Avoid calling setup_display() from SPL code
939d30becd wandboard: Avoid calling setup_display() from SPL code
025f356829 cgtqmx6eval: Avoid calling setup_display() from SPL code
3cfa1bd347 mx6sabresd: Avoid calling setup_display() from SPL code
6d9b99b923 mx6sabresd: Add Serial Download Protocol support
3766ef9cea toradex: imx6: Move g_dnl_bind_fixup() into common SPL code
da4a0fd824 board: ge: bx50v3: set eth0 MAC address
5e57f55125 detect and setup solidrun hummingboard2
35e7f4f0aa imx6: drop duplicated bss memset and board_init_r() call
72066ea7f5 pico-imx7d: Add "how to boot with NXP 4.1 Kernel"
58cb0bc9f0 imx: imx7d: remove CamelCase from ENET_xMHz macros
2df17bffbc imx_common: detect USB serial downloader reliably
5615ed0835 imx: add macro to detect whether USB PHY is active

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---

 recipes-bsp/u-boot/u-boot-fslc-mxsboot_2017.09.bb | 2 +-
 recipes-bsp/u-boot/u-boot-fslc_2017.09.bb         | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes-bsp/u-boot/u-boot-fslc-mxsboot_2017.09.bb b/recipes-bsp/u-boot/u-boot-fslc-mxsboot_2017.09.bb
index 520b674e..0bbcd084 100644
--- a/recipes-bsp/u-boot/u-boot-fslc-mxsboot_2017.09.bb
+++ b/recipes-bsp/u-boot/u-boot-fslc-mxsboot_2017.09.bb
@@ -7,7 +7,7 @@ PROVIDES = "u-boot-mxsboot"
 
 PV = "v2017.09+git${SRCPV}"
 
-SRCREV = "e4a4d913e9034171146fd55b5f6e09298fd42b49"
+SRCREV = "9f164a1a01fceb53fc88ad474a5cda70f1c486c2"
 SRCBRANCH = "2017.09+fslc"
 
 SRC_URI = "git://github.com/Freescale/u-boot-fslc.git;branch=${SRCBRANCH}"
diff --git a/recipes-bsp/u-boot/u-boot-fslc_2017.09.bb b/recipes-bsp/u-boot/u-boot-fslc_2017.09.bb
index ed0537e0..b3fd47a6 100644
--- a/recipes-bsp/u-boot/u-boot-fslc_2017.09.bb
+++ b/recipes-bsp/u-boot/u-boot-fslc_2017.09.bb
@@ -2,5 +2,5 @@ include u-boot-fslc.inc
 
 PV = "v2017.09+git${SRCPV}"
 
-SRCREV = "ed4d1d98113f3ce7c0203f266bf57cabad3412cf"
+SRCREV = "9f164a1a01fceb53fc88ad474a5cda70f1c486c2"
 SRCBRANCH = "2017.09+fslc"
-- 
2.14.1



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 7/8] linux-fslc: Add i.MX25 configuration
  2017-09-29 19:27 [PATCH 1/8] wic: Move all wks files to root layer directory Otavio Salvador
                   ` (4 preceding siblings ...)
  2017-09-29 19:27 ` [PATCH 6/8] u-boot-fslc: Bump revision to 9f164a1a01 Otavio Salvador
@ 2017-09-29 19:27 ` Otavio Salvador
  2017-09-29 19:27 ` [PATCH 8/8] imx25pdk: Add machine file Otavio Salvador
  6 siblings, 0 replies; 8+ messages in thread
From: Otavio Salvador @ 2017-09-29 19:27 UTC (permalink / raw)
  To: meta-freescale Mailing List; +Cc: Otavio Salvador

This adds the i.MX25 configuration. It is based on
imx_v4_v5_defconfig.

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---

 recipes-kernel/linux/linux-fslc/mx25/defconfig | 190 +++++++++++++++++++++++++
 1 file changed, 190 insertions(+)
 create mode 100644 recipes-kernel/linux/linux-fslc/mx25/defconfig

diff --git a/recipes-kernel/linux/linux-fslc/mx25/defconfig b/recipes-kernel/linux/linux-fslc/mx25/defconfig
new file mode 100644
index 00000000..ca0f13ca
--- /dev/null
+++ b/recipes-kernel/linux/linux-fslc/mx25/defconfig
@@ -0,0 +1,190 @@
+# CONFIG_SWAP is not set
+CONFIG_SYSVIPC=y
+CONFIG_POSIX_MQUEUE=y
+CONFIG_FHANDLE=y
+CONFIG_NO_HZ=y
+CONFIG_HIGH_RES_TIMERS=y
+CONFIG_LOG_BUF_SHIFT=14
+CONFIG_CGROUPS=y
+CONFIG_BLK_DEV_INITRD=y
+CONFIG_EXPERT=y
+# CONFIG_COMPAT_BRK is not set
+CONFIG_SLAB=y
+CONFIG_PROFILING=y
+CONFIG_OPROFILE=y
+CONFIG_KPROBES=y
+CONFIG_MODULES=y
+CONFIG_MODULE_UNLOAD=y
+# CONFIG_BLK_DEV_BSG is not set
+# CONFIG_IOSCHED_DEADLINE is not set
+# CONFIG_IOSCHED_CFQ is not set
+CONFIG_ARCH_MULTI_V4T=y
+CONFIG_ARCH_MULTI_V5=y
+# CONFIG_ARCH_MULTI_V7 is not set
+CONFIG_ARCH_MXC=y
+CONFIG_MACH_MX21ADS=y
+CONFIG_MACH_MX27ADS=y
+CONFIG_MACH_MX27_3DS=y
+CONFIG_MACH_IMX27_VISSTRIM_M10=y
+CONFIG_MACH_PCA100=y
+CONFIG_MACH_IMX27_DT=y
+CONFIG_SOC_IMX1=y
+CONFIG_SOC_IMX25=y
+CONFIG_PREEMPT=y
+CONFIG_AEABI=y
+CONFIG_ZBOOT_ROM_TEXT=0x0
+CONFIG_ZBOOT_ROM_BSS=0x0
+CONFIG_PM_DEBUG=y
+CONFIG_NET=y
+CONFIG_PACKET=y
+CONFIG_UNIX=y
+CONFIG_INET=y
+CONFIG_IP_MULTICAST=y
+CONFIG_IP_PNP=y
+CONFIG_IP_PNP_DHCP=y
+# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
+# CONFIG_INET_XFRM_MODE_TUNNEL is not set
+# CONFIG_INET_XFRM_MODE_BEET is not set
+# CONFIG_INET_DIAG is not set
+# CONFIG_IPV6 is not set
+CONFIG_NETFILTER=y
+CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
+CONFIG_DEVTMPFS=y
+CONFIG_DEVTMPFS_MOUNT=y
+CONFIG_IMX_WEIM=y
+CONFIG_MTD=y
+CONFIG_MTD_CMDLINE_PARTS=y
+CONFIG_MTD_BLOCK=y
+CONFIG_MTD_CFI=y
+CONFIG_MTD_CFI_ADV_OPTIONS=y
+CONFIG_MTD_CFI_GEOMETRY=y
+# CONFIG_MTD_MAP_BANK_WIDTH_1 is not set
+# CONFIG_MTD_CFI_I2 is not set
+CONFIG_MTD_CFI_INTELEXT=y
+CONFIG_MTD_PHYSMAP=y
+CONFIG_MTD_NAND=y
+CONFIG_MTD_NAND_MXC=y
+CONFIG_MTD_UBI=y
+CONFIG_EEPROM_AT24=y
+CONFIG_EEPROM_AT25=y
+CONFIG_BLK_DEV_SD=y
+CONFIG_ATA=y
+CONFIG_PATA_IMX=y
+CONFIG_NETDEVICES=y
+CONFIG_CS89x0=y
+CONFIG_CS89x0_PLATFORM=y
+CONFIG_DM9000=y
+CONFIG_SMC91X=y
+CONFIG_SMC911X=y
+CONFIG_SMSC911X=y
+CONFIG_SMSC_PHY=y
+# CONFIG_INPUT_MOUSEDEV is not set
+CONFIG_INPUT_EVDEV=y
+CONFIG_KEYBOARD_GPIO=y
+CONFIG_KEYBOARD_IMX=y
+# CONFIG_INPUT_MOUSE is not set
+CONFIG_INPUT_TOUCHSCREEN=y
+CONFIG_TOUCHSCREEN_ADS7846=m
+CONFIG_TOUCHSCREEN_MX25=y
+CONFIG_TOUCHSCREEN_MC13783=y
+# CONFIG_LEGACY_PTYS is not set
+CONFIG_SERIAL_8250=m
+CONFIG_SERIAL_IMX=y
+CONFIG_SERIAL_IMX_CONSOLE=y
+# CONFIG_HW_RANDOM is not set
+CONFIG_I2C_CHARDEV=y
+CONFIG_I2C_IMX=y
+CONFIG_SPI=y
+CONFIG_SPI_IMX=y
+CONFIG_SPI_SPIDEV=y
+CONFIG_GPIO_SYSFS=y
+CONFIG_W1=y
+CONFIG_W1_MASTER_MXC=y
+CONFIG_W1_SLAVE_THERM=y
+CONFIG_HWMON=m
+CONFIG_SENSORS_MC13783_ADC=m
+CONFIG_WATCHDOG=y
+CONFIG_IMX2_WDT=y
+CONFIG_MFD_MX25_TSADC=y
+CONFIG_MFD_MC13XXX_SPI=y
+CONFIG_REGULATOR=y
+CONFIG_REGULATOR_FIXED_VOLTAGE=y
+CONFIG_REGULATOR_GPIO=y
+CONFIG_REGULATOR_MC13783=y
+CONFIG_REGULATOR_MC13892=y
+CONFIG_MEDIA_SUPPORT=y
+CONFIG_MEDIA_CAMERA_SUPPORT=y
+CONFIG_V4L_PLATFORM_DRIVERS=y
+CONFIG_SOC_CAMERA=y
+CONFIG_VIDEO_MX2=y
+CONFIG_V4L_MEM2MEM_DRIVERS=y
+CONFIG_VIDEO_CODA=y
+CONFIG_SOC_CAMERA_OV2640=y
+CONFIG_FB=y
+CONFIG_FB_IMX=y
+CONFIG_LCD_L4F00242T03=y
+CONFIG_FRAMEBUFFER_CONSOLE=y
+CONFIG_LOGO=y
+CONFIG_SOUND=y
+CONFIG_SND=y
+# CONFIG_SND_ARM is not set
+# CONFIG_SND_SPI is not set
+CONFIG_SND_SOC=y
+CONFIG_SND_IMX_SOC=y
+CONFIG_SND_SOC_MX27VIS_AIC32X4=y
+CONFIG_SND_SOC_PHYCORE_AC97=y
+CONFIG_SND_SOC_EUKREA_TLV320=y
+CONFIG_SND_SOC_IMX_SGTL5000=y
+CONFIG_SND_SOC_IMX_MC13783=y
+CONFIG_USB_HID=m
+CONFIG_USB=y
+CONFIG_USB_EHCI_HCD=y
+CONFIG_USB_EHCI_MXC=y
+CONFIG_USB_STORAGE=y
+CONFIG_USB_CHIPIDEA=y
+CONFIG_USB_CHIPIDEA_UDC=y
+CONFIG_USB_CHIPIDEA_HOST=y
+CONFIG_NOP_USB_XCEIV=y
+CONFIG_USB_GADGET=y
+CONFIG_USB_ETH=m
+CONFIG_MMC=y
+CONFIG_MMC_SDHCI=y
+CONFIG_MMC_SDHCI_PLTFM=y
+CONFIG_MMC_SDHCI_ESDHC_IMX=y
+CONFIG_MMC_MXC=y
+CONFIG_NEW_LEDS=y
+CONFIG_LEDS_CLASS=y
+CONFIG_LEDS_GPIO=y
+CONFIG_LEDS_MC13783=y
+CONFIG_LEDS_TRIGGERS=y
+CONFIG_LEDS_TRIGGER_TIMER=y
+CONFIG_LEDS_TRIGGER_HEARTBEAT=y
+CONFIG_LEDS_TRIGGER_BACKLIGHT=y
+CONFIG_LEDS_TRIGGER_GPIO=y
+CONFIG_LEDS_TRIGGER_DEFAULT_ON=y
+CONFIG_RTC_CLASS=y
+CONFIG_RTC_DRV_PCF8563=y
+CONFIG_RTC_DRV_IMXDI=y
+CONFIG_RTC_DRV_MC13XXX=y
+CONFIG_RTC_DRV_MXC=y
+CONFIG_DMADEVICES=y
+CONFIG_IMX_DMA=y
+CONFIG_IMX_SDMA=y
+# CONFIG_IOMMU_SUPPORT is not set
+CONFIG_IIO=y
+CONFIG_FSL_MX25_ADC=y
+CONFIG_EXT4_FS=y
+# CONFIG_DNOTIFY is not set
+CONFIG_VFAT_FS=y
+# CONFIG_PROC_PAGE_MONITOR is not set
+CONFIG_TMPFS=y
+CONFIG_JFFS2_FS=y
+CONFIG_UBIFS_FS=y
+CONFIG_NFS_FS=y
+CONFIG_ROOT_NFS=y
+CONFIG_NLS_CODEPAGE_437=m
+CONFIG_NLS_CODEPAGE_850=m
+CONFIG_NLS_ISO8859_1=y
+CONFIG_NLS_ISO8859_15=m
+CONFIG_FONTS=y
+CONFIG_FONT_8x8=y
-- 
2.14.1



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 8/8] imx25pdk: Add machine file
  2017-09-29 19:27 [PATCH 1/8] wic: Move all wks files to root layer directory Otavio Salvador
                   ` (5 preceding siblings ...)
  2017-09-29 19:27 ` [PATCH 7/8] linux-fslc: Add i.MX25 configuration Otavio Salvador
@ 2017-09-29 19:27 ` Otavio Salvador
  6 siblings, 0 replies; 8+ messages in thread
From: Otavio Salvador @ 2017-09-29 19:27 UTC (permalink / raw)
  To: meta-freescale Mailing List; +Cc: Otavio Salvador

CPU: i.MX25 with ARM926EJ–S core - 400 MHz maximum speed
NXP® MC34704B power management IC
NXP SGTL5000 ultra-low–power audio codec
Memory:
  64 MB or 512 MB DDR2
  2 GB NAND flash

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---

 conf/machine/imx25pdk.conf | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)
 create mode 100644 conf/machine/imx25pdk.conf

diff --git a/conf/machine/imx25pdk.conf b/conf/machine/imx25pdk.conf
new file mode 100644
index 00000000..f35d0db4
--- /dev/null
+++ b/conf/machine/imx25pdk.conf
@@ -0,0 +1,24 @@
+#@TYPE: Machine
+#@NAME: NXP i.MX25 Evaluation Kit
+#@SOC: i.MX25
+#@DESCRIPTION: Machine configuration for NXP i.MX25 Evaluation Kit
+#@MAINTAINER: Otavio Salvador <otavio@ossystems.com.br>
+
+MACHINEOVERRIDES =. "mx25:"
+
+include conf/machine/include/imx-base.inc
+include conf/machine/include/tune-arm926ejs.inc
+
+UBOOT_MACHINE ?= "mx25pdk_defconfig"
+
+KERNEL_DEVICETREE = "imx25-pdk.dtb"
+
+SERIAL_CONSOLE = "115200 ttymxc0"
+
+MACHINE_FEATURES = "usbgadget usbhost vfat alsa touchscreen"
+
+WKS_FILE ?= "imx-uboot.wks"
+MACHINE_ESSENTIAL_EXTRA_RDEPENDS += " \
+    kernel-image \
+    kernel-devicetree \
+"
-- 
2.14.1



^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2017-09-29 19:29 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-09-29 19:27 [PATCH 1/8] wic: Move all wks files to root layer directory Otavio Salvador
2017-09-29 19:27 ` [PATCH 2/8] wic: Force the use of 'msdos' partition tables Otavio Salvador
2017-09-29 19:27 ` [PATCH 3/8] wic: Add a i.MX bootpart templates Otavio Salvador
2017-09-29 19:27 ` [PATCH 4/8] imx-base.inc: Add basic settings for i.MX25 Otavio Salvador
2017-09-29 19:27 ` [PATCH 5/8] imx-base.inc: Always use wic for i.MX25 images Otavio Salvador
2017-09-29 19:27 ` [PATCH 6/8] u-boot-fslc: Bump revision to 9f164a1a01 Otavio Salvador
2017-09-29 19:27 ` [PATCH 7/8] linux-fslc: Add i.MX25 configuration Otavio Salvador
2017-09-29 19:27 ` [PATCH 8/8] imx25pdk: Add machine file Otavio Salvador

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.