forked from Qortal/Brooklyn
84ba5b15ac
* Enhance GPIO addon for Noctua Fans for the Qortector upcoming case. This will put PWM signal to real-time. * Fixed RDP not letting a user login if not logged out on Cinnamon release (reported by Crowetic) * Update i2c sensor db * Fixed DRM broadcast over HDMI 2+ * Ease up DHCP security only to prevent Brooklyn blocking routers. * Add possibility to add extra memory for Cinnamon Desktop Release * Fix error message of Software Render mode on Cinnamon Desktop * Add proper offset for HD screens for pixel array *Fixed HDMI jitter for videocore4 GPU * Enable all radios (including Bluetooth)
55 lines
1.1 KiB
Plaintext
55 lines
1.1 KiB
Plaintext
/*
|
|
* Definitions for Allo Piano DAC (2.0/2.1) boards
|
|
*
|
|
* NB. The Piano DAC 2.1 board contains 2x TI PCM5142 DAC's. One DAC is stereo
|
|
* (left/right) and the other provides a subwoofer output, using DSP on the
|
|
* chip for digital high/low pass crossover.
|
|
* The initial support for this hardware, that doesn't require any codec driver
|
|
* modifications, uses only one DAC chip for stereo (left/right) output, the
|
|
* chip with 0x4c slave address. The other chip at 0x4d is currently ignored!
|
|
*/
|
|
|
|
/dts-v1/;
|
|
/plugin/;
|
|
|
|
/ {
|
|
compatible = "brcm,bcm2835";
|
|
|
|
fragment@0 {
|
|
target = <&i2s>;
|
|
__overlay__ {
|
|
status = "okay";
|
|
};
|
|
};
|
|
|
|
fragment@1 {
|
|
target = <&i2c1>;
|
|
__overlay__ {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
status = "okay";
|
|
|
|
pcm5142@4c {
|
|
#sound-dai-cells = <0>;
|
|
compatible = "ti,pcm5142";
|
|
reg = <0x4c>;
|
|
status = "okay";
|
|
};
|
|
};
|
|
};
|
|
|
|
fragment@2 {
|
|
target = <&sound>;
|
|
piano_dac: __overlay__ {
|
|
compatible = "allo,piano-dac";
|
|
i2s-controller = <&i2s>;
|
|
status = "okay";
|
|
};
|
|
};
|
|
|
|
__overrides__ {
|
|
24db_digital_gain =
|
|
<&piano_dac>,"allo,24db_digital_gain?";
|
|
};
|
|
};
|