public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Purna Chandra Mandal <purna.mandal@microchip.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v1 01/18] MIPS: Prepare device-tree support.
Date: Mon, 21 Dec 2015 11:36:38 +0530	[thread overview]
Message-ID: <567796EE.7060304@microchip.com> (raw)
In-Reply-To: <5675D889.8090406@gmail.com>

On 12/20/2015 03:52 AM, Daniel Schwierzeck wrote:

>
> Am 17.12.2015 um 18:28 schrieb Purna Chandra Mandal:
>> Signed-off-by: Purna Chandra Mandal <purna.mandal@microchip.com>
> if you send patches from other people, you should not remove their
> Author or Signed-off-by. I already prepared a cleaned up version of that
> patch some days ago for submission. But I see you did some modifications
> which I missed. I will add those to my patch and you can drop this one
> in your next patch series. You should rebase your patches against the
> next branch in u-boot-mips tree [1]
>
> [1] http://git.denx.de/?p=u-boot/u-boot-mips.git;a=summary

ack. I'll drop in next version.

>> ---
>>
>>  arch/Kconfig                      |  1 +
>>  arch/mips/config.mk               |  3 +++
>>  arch/mips/dts/.gitignore          |  1 +
>>  arch/mips/dts/Makefile            | 16 ++++++++++++++++
>>  arch/mips/dts/include/dt-bindings |  1 +
>>  arch/mips/dts/skeleton.dtsi       | 21 +++++++++++++++++++++
>>  dts/Makefile                      |  2 +-
>>  7 files changed, 44 insertions(+), 1 deletion(-)
>>  create mode 100644 arch/mips/dts/.gitignore
>>  create mode 100644 arch/mips/dts/Makefile
>>  create mode 120000 arch/mips/dts/include/dt-bindings
>>  create mode 100644 arch/mips/dts/skeleton.dtsi
>>
>> diff --git a/arch/Kconfig b/arch/Kconfig
>> index 6489cc9..589fc47 100644
>> --- a/arch/Kconfig
>> +++ b/arch/Kconfig
>> @@ -54,6 +54,7 @@ config MIPS
>>      select HAVE_PRIVATE_LIBGCC
>>      select HAVE_GENERIC_BOARD
>>      select SYS_GENERIC_BOARD
>> +    select SUPPORT_OF_CONTROL
>>  
>>  config NDS32
>>      bool "NDS32 architecture"
>> diff --git a/arch/mips/config.mk b/arch/mips/config.mk
>> index 52e28f2..d4d688e 100644
>> --- a/arch/mips/config.mk
>> +++ b/arch/mips/config.mk
>> @@ -70,3 +70,6 @@ PLATFORM_RELFLAGS        += -ffunction-sections -fdata-sections
>>  LDFLAGS_FINAL            += --gc-sections -pie
>>  OBJCOPYFLAGS            += -j .text -j .rodata -j .data -j .got
>>  OBJCOPYFLAGS            += -j .u_boot_list -j .rel.dyn -j .padding
>> +ifdef CONFIG_OF_EMBED
>> +OBJCOPYFLAGS            += -j .dtb.init.rodata
>> +endif
>> diff --git a/arch/mips/dts/.gitignore b/arch/mips/dts/.gitignore
>> new file mode 100644
>> index 0000000..b60ed20
>> --- /dev/null
>> +++ b/arch/mips/dts/.gitignore
>> @@ -0,0 +1 @@
>> +*.dtb
>> diff --git a/arch/mips/dts/Makefile b/arch/mips/dts/Makefile
>> new file mode 100644
>> index 0000000..724b5d2
>> --- /dev/null
>> +++ b/arch/mips/dts/Makefile
>> @@ -0,0 +1,16 @@
>> +#
>> +# SPDX-License-Identifier:    GPL-2.0+
>> +#
>> +
>> +#dtb-$(CONFIG_XXX) += xxx.dtb
>> +
>> +targets += $(dtb-y)
>> +
>> +# Add any required device tree compiler flags here
>> +DTC_FLAGS +=
>> +
>> +PHONY += dtbs
>> +dtbs: $(addprefix $(obj)/, $(dtb-y))
>> +    @:
>> +
>> +clean-files := *.dtb
>> diff --git a/arch/mips/dts/include/dt-bindings b/arch/mips/dts/include/dt-bindings
>> new file mode 120000
>> index 0000000..0cecb3d
>> --- /dev/null
>> +++ b/arch/mips/dts/include/dt-bindings
>> @@ -0,0 +1 @@
>> +../../../../include/dt-bindings
>> \ No newline at end of file
>> diff --git a/arch/mips/dts/skeleton.dtsi b/arch/mips/dts/skeleton.dtsi
>> new file mode 100644
>> index 0000000..ad41546
>> --- /dev/null
>> +++ b/arch/mips/dts/skeleton.dtsi
>> @@ -0,0 +1,21 @@
>> +/*
>> + * Skeleton device tree; the bare minimum needed to boot; just include and
>> + * add a compatible value.  The bootloader will typically populate the memory
>> + * node.
>> + */
>> +
>> +/ {
>> +    #address-cells = <1>;
>> +    #size-cells = <1>;
>> +
>> +    chosen {
>> +    };
>> +
>> +    aliases {
>> +    };
>> +
>> +    memory {
>> +        device_type = "memory";
>> +        reg = <0 0>;
>> +    };
>> +};
>> diff --git a/dts/Makefile b/dts/Makefile
>> index d3122aa..5c3a01f 100644
>> --- a/dts/Makefile
>> +++ b/dts/Makefile
>> @@ -45,4 +45,4 @@ dtbs: $(obj)/dt.dtb
>>  clean-files := dt.dtb.S
>>  
>>  # Let clean descend into dts directories
>> -subdir- += ../arch/arm/dts ../arch/microblaze/dts ../arch/sandbox/dts ../arch/x86/dts
>> +subdir- += ../arch/arm/dts ../arch/microblaze/dts ../arch/sandbox/dts ../arch/x86/dts ../arch/mips/dts
>>

      reply	other threads:[~2015-12-21  6:06 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-12-17 17:28 [U-Boot] [PATCH v1 01/18] MIPS: Prepare device-tree support Purna Chandra Mandal
2015-12-17 17:47 ` Marek Vasut
2015-12-17 17:53   ` Purna Chandra Mandal
2015-12-19 22:22 ` Daniel Schwierzeck
2015-12-21  6:06   ` Purna Chandra Mandal [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=567796EE.7060304@microchip.com \
    --to=purna.mandal@microchip.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox