• R/O
  • HTTP
  • SSH
  • HTTPS

コミット

タグ
未設定

よく使われているワード(クリックで追加)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

コミットメタ情報

リビジョン4d446a8134e0599b4b4a4faab1b5e8d8a8fddd81 (tree)
日時2019-11-18 23:21:58
作者Yoshinori Sato <ysato@user...>
コミッターYoshinori Sato

ログメッセージ

update configuration.

変更サマリ

差分

--- a/arch/h8300/Kconfig
+++ b/arch/h8300/Kconfig
@@ -44,10 +44,6 @@ config SYS_CPU
4444 config CPU_H83069
4545 bool
4646
47-config TIMER_BASE
48- hex
49- default 0xffff80
50-
5147 source "board/h8300h_sim/Kconfig"
5248 source "board/h8300s_sim/Kconfig"
5349 source "board/ae3069/Kconfig"
--- a/arch/h8300/dts/edosk2674.dts
+++ b/arch/h8300/dts/edosk2674.dts
@@ -6,7 +6,7 @@
66 interrupt-parent = <&h8intc>;
77
88 chosen {
9- stdout-path = &sci0;
9+ stdout-path = &sci2;
1010 };
1111 aliases {
1212 serial0 = &sci0;
@@ -20,27 +20,23 @@
2020 clock-frequency = <33333333>;
2121 clock-output-names = "xtal";
2222 };
23- pllclk: pllclk {
24- compatible = "renesas,h8s2678-pll-clock";
25- clocks = <&xclk>;
26- #clock-cells = <0>;
27- reg = <0xfee03b 2>, <0xfee045 2>;
28- };
29- core_clk: core_clk {
30- compatible = "renesas,h8300-div-clock";
31- clocks = <&pllclk>;
32- #clock-cells = <0>;
33- reg = <0xfee03b 2>;
34- renesas,width = <3>;
35- };
3623 fclk: fclk {
3724 compatible = "fixed-factor-clock";
38- clocks = <&core_clk>;
25+ clocks = <&xclk>;
3926 #clock-cells = <0>;
4027 clock-div = <1>;
4128 clock-mult = <1>;
4229 };
4330
31+ flash@0x0 {
32+ compatible = "cfi-flash";
33+ reg = <0x00000000 0x04000000>;
34+ bank-width = <2>;
35+ device-width = <1>;
36+ #address-cells = <1>;
37+ #size-cells = <1>;
38+ };
39+
4440 memory@400000 {
4541 device_type = "memory";
4642 reg = <0x400000 0x800000>;
@@ -100,5 +96,6 @@
10096 lan91c96: ethernet@f80000 {
10197 compatible = "smsc,lan91c96";
10298 reg = <0xf80000 32>;
99+ lan91c96,bus = <8>;
103100 };
104101 };
--- a/include/configs/edosk2674.h
+++ b/include/configs/edosk2674.h
@@ -64,17 +64,11 @@
6464
6565 /* Board Clock */
6666 #define CONFIG_SYS_CLK_FREQ 33333333
67-#define CONFIG_SH_SCIF_CLK_FREQ CONFIG_SYS_CLK_FREQ
6867 #define CONFIG_SYS_HZ 1000
6968
70-#ifdef CONFIG_CMD_NET
71-/* Ether */
72-#define CONFIG_LAN91C96 1
73-#define CONFIG_LAN91C96_BASE 0xf80000
74-#endif
75-
7669 /* Flash */
7770 #define CONFIG_SYS_FLASH_BASE EDOSK2674_FLASH_BASE
78-
71+#define CONFIG_SYS_MAX_FLASH_BANKS_DETECT 1
72+#define CONFIG_SYS_FLASH_CFI 1
7973
8074 #endif /* __EDOSK2674_H */