Provide a devicetree fragment to enable the mouse for x86 and arm, when running as an EFI app. Signed-off-by: Simon Glass <sjg@chromium.org>
37 lines
433 B
Plaintext
37 lines
433 B
Plaintext
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (c) 2015 Google, Inc
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
/include/ "skeleton.dtsi"
|
|
|
|
/ {
|
|
model = "EFI ARM Application";
|
|
compatible = "efi,arm-app";
|
|
|
|
chosen {
|
|
stdout-path = &serial;
|
|
};
|
|
|
|
serial: serial {
|
|
compatible = "efi,uart";
|
|
};
|
|
|
|
reset {
|
|
compatible = "efi,reset";
|
|
bootph-all;
|
|
};
|
|
|
|
efi-fb {
|
|
compatible = "efi-fb";
|
|
bootph-some-ram;
|
|
};
|
|
|
|
mouse {
|
|
compatible = "efi,mouse";
|
|
};
|
|
|
|
};
|