-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial support for Garrison system.
Garrison is an IBM branded OpenPOWER system. devtree stub. SCU setup. Signed-off-by: Joel Stanley <joel@jms.id.au>
- Loading branch information
Brad Bishop
authored and
Joel Stanley
committed
May 11, 2016
1 parent
4a45cba
commit 1d0df28
Showing
3 changed files
with
102 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
This file contains 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,85 @@ | ||
/dts-v1/; | ||
|
||
#include "ast2400.dtsi" | ||
#include <dt-bindings/gpio/gpio.h> | ||
|
||
/ { | ||
model = "Garrison BMC"; | ||
compatible = "ibm,garrison-bmc", "aspeed,ast2400"; | ||
|
||
ahb { | ||
mac0: ethernet@1e660000 { | ||
use-nc-si; | ||
no-hw-checksum; | ||
}; | ||
|
||
fmc@1e620000 { | ||
reg = < 0x1e620000 0x94 | ||
0x20000000 0x02000000 >; | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
compatible = "aspeed,fmc"; | ||
flash@0 { | ||
reg = < 0 >; | ||
compatible = "jedec,spi-nor" ; | ||
/* | ||
* Possibly required props: | ||
* spi-max-frequency = <> | ||
* spi-tx-bus-width = <> | ||
* spi-rx-bus-width = <> | ||
* m25p,fast-read | ||
* spi-cpol if inverse clock polarity (CPOL) | ||
* spi-cpha if shifted clock phase (CPHA) | ||
*/ | ||
#include "aspeed-bmc-opp-flash-layout.dtsi" | ||
}; | ||
}; | ||
spi@1e630000 { | ||
reg = < 0x1e630000 0x18 | ||
0x30000000 0x02000000 >; | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
compatible = "aspeed,smc"; | ||
flash { | ||
reg = < 0 >; | ||
compatible = "jedec,spi-nor" ; | ||
label = "pnor"; | ||
/* spi-max-frequency = <>; */ | ||
/* m25p,fast-read; */ | ||
}; | ||
}; | ||
apb { | ||
i2c: i2c@1e78a040 { | ||
i2c4: i2c-bus@140 { | ||
occ@50 { | ||
compatible = "ibm,occ-i2c"; | ||
reg = <0x50>; | ||
}; | ||
}; | ||
i2c5: i2c-bus@180 { | ||
occ@50 { | ||
compatible = "ibm,occ-i2c"; | ||
reg = <0x50>; | ||
}; | ||
}; | ||
i2c10: i2c-bus@3c0 { | ||
status = "okay"; | ||
}; | ||
i2c11: i2c-bus@400 { | ||
status = "okay"; | ||
|
||
rtc@68 { | ||
compatible = "dallas,ds3231"; | ||
reg = <0x68>; | ||
}; | ||
}; | ||
i2c12: i2c-bus@440 { | ||
status = "okay"; | ||
}; | ||
i2c13: i2c-bus@480 { | ||
status = "okay"; | ||
}; | ||
}; | ||
}; | ||
}; | ||
}; |
This file contains 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