%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
/* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright (C) 2012 John Crispin <john@phrozen.org> */ #ifndef _RT288X_PINMUX_H__ #define _RT288X_PINMUX_H__ #define FUNC(name, value, pin_first, pin_count) \ { name, value, pin_first, pin_count } #define GRP(_name, _func, _mask, _shift) \ { .name = _name, .mask = _mask, .shift = _shift, \ .func = _func, .gpio = _mask, \ .func_count = ARRAY_SIZE(_func) } #define GRP_G(_name, _func, _mask, _gpio, _shift) \ { .name = _name, .mask = _mask, .shift = _shift, \ .func = _func, .gpio = _gpio, \ .func_count = ARRAY_SIZE(_func) } struct rt2880_pmx_group; struct rt2880_pmx_func { const char *name; const char value; int pin_first; int pin_count; int *pins; int *groups; int group_count; int enabled; }; struct rt2880_pmx_group { const char *name; int enabled; const u32 shift; const char mask; const char gpio; struct rt2880_pmx_func *func; int func_count; }; extern struct rt2880_pmx_group *rt2880_pinmux_data; #endif