Lines Matching +full:cap +full:- +full:get
2 # SPDX-License-Identifier: GPL-2.0
21 "get-fmax-cap": PARAM_GET_FMAX_CAP,
22 "set-fmax-cap": PARAM_SET_FMAX_CAP,
23 "get-power-cap": PARAM_GET_PWR_CAP,
24 "set-power-cap": PARAM_SET_PWR_CAP,
25 "get-graphics-mode": PARAM_GET_GFX_MODE,
26 "set-graphics-mode": PARAM_SET_GFX_MODE,
27 "get-current-temp": PARAM_GET_CURR_TEMP,
28 "get-fmax-max": PARAM_GET_FMAX_MAX,
29 "get-fmax-min": PARAM_GET_FMAX_MIN,
30 "get-soc-power-max": PARAM_GET_SOC_PWR_MAX,
31 "get-soc-power-min": PARAM_GET_SOC_PWR_MIN,
32 "get-soc-power-cur": PARAM_GET_SOC_PWR_CUR,
46 choices=["get-nonce", "get-param", "set-param", "set-uid"],
49 parser.add_argument("--device", default="/dev/dbc", help="Device to operate")
50 parser.add_argument("--signature", help="File containing signature for command")
51 parser.add_argument("--message", choices=messages.keys(), help="Message index")
52 parser.add_argument("--data", help="Argument to pass to message")
53 parser.add_argument("--uid", help="File containing UID to pass")
96 if args.command == "get-nonce":
102 elif args.command == "set-uid":
109 elif args.command == "get-param":
122 elif args.command == "set-param":
123 if not args.message or args.message.startswith("get"):