1/* 2 * Copyright (c) 2021 Seagate Technology LLC 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7/ { 8 model = "Seagate Legend 2.5 SSD board"; 9 compatible = "legend25_ssd", "seagate,legend25_ssd"; 10 11 aliases { 12 led-strip = &led_strip_spi; 13 }; 14}; 15 16&clk_hse { 17 clock-frequency = <DT_FREQ_M(24)>; /* 24MHz external clock */ 18 status = "okay"; 19}; 20 21&pll { 22 clocks = <&clk_hse>; 23 prediv = <1>; 24 mul = <2>; 25 status = "okay"; 26}; 27 28&rcc { 29 clocks = <&pll>; 30 clock-frequency = <DT_FREQ_M(48)>; 31 ahb-prescaler = <1>; 32 apb1-prescaler = <1>; 33}; 34 35&led_strip_spi { 36 chain-length = <4>; 37 status = "okay"; 38}; 39 40&usb { 41 status = "okay"; 42}; 43