input: gpio_keys_polled: Make use of device property API
[deliverable/linux.git] / drivers / gpio / gpiolib-acpi.c
CommitLineData
e29482e8
MN
1/*
2 * ACPI helpers for GPIO API
3 *
4 * Copyright (C) 2012, Intel Corporation
5 * Authors: Mathias Nyman <mathias.nyman@linux.intel.com>
6 * Mika Westerberg <mika.westerberg@linux.intel.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12
13#include <linux/errno.h>
936e15dd 14#include <linux/gpio/consumer.h>
5ccff852 15#include <linux/gpio/driver.h>
e29482e8 16#include <linux/export.h>
e29482e8 17#include <linux/acpi.h>
0d1c28a4 18#include <linux/interrupt.h>
473ed7be 19#include <linux/mutex.h>
e29482e8 20
5ccff852
MW
21#include "gpiolib.h"
22
4b01a14b 23struct acpi_gpio_event {
7fc7acb9 24 struct list_head node;
4b01a14b 25 acpi_handle handle;
7fc7acb9
RW
26 unsigned int pin;
27 unsigned int irq;
e46cf32c 28 struct gpio_desc *desc;
7fc7acb9
RW
29};
30
473ed7be
MW
31struct acpi_gpio_connection {
32 struct list_head node;
e46cf32c 33 unsigned int pin;
473ed7be
MW
34 struct gpio_desc *desc;
35};
36
aa92b6f6 37struct acpi_gpio_chip {
473ed7be
MW
38 /*
39 * ACPICA requires that the first field of the context parameter
40 * passed to acpi_install_address_space_handler() is large enough
41 * to hold struct acpi_connection_info.
42 */
43 struct acpi_connection_info conn_info;
44 struct list_head conns;
45 struct mutex conn_lock;
aa92b6f6 46 struct gpio_chip *chip;
4b01a14b 47 struct list_head events;
aa92b6f6
MW
48};
49
e29482e8
MN
50static int acpi_gpiochip_find(struct gpio_chip *gc, void *data)
51{
52 if (!gc->dev)
53 return false;
54
55 return ACPI_HANDLE(gc->dev) == data;
56}
57
58/**
936e15dd 59 * acpi_get_gpiod() - Translate ACPI GPIO pin to GPIO descriptor usable with GPIO API
e29482e8
MN
60 * @path: ACPI GPIO controller full path name, (e.g. "\\_SB.GPO1")
61 * @pin: ACPI GPIO pin number (0-based, controller-relative)
62 *
936e15dd
MW
63 * Returns GPIO descriptor to use with Linux generic GPIO API, or ERR_PTR
64 * error value
e29482e8
MN
65 */
66
936e15dd 67static struct gpio_desc *acpi_get_gpiod(char *path, int pin)
e29482e8
MN
68{
69 struct gpio_chip *chip;
70 acpi_handle handle;
71 acpi_status status;
72
73 status = acpi_get_handle(NULL, path, &handle);
74 if (ACPI_FAILURE(status))
936e15dd 75 return ERR_PTR(-ENODEV);
e29482e8
MN
76
77 chip = gpiochip_find(handle, acpi_gpiochip_find);
78 if (!chip)
936e15dd 79 return ERR_PTR(-ENODEV);
e29482e8 80
936e15dd
MW
81 if (pin < 0 || pin > chip->ngpio)
82 return ERR_PTR(-EINVAL);
e29482e8 83
390d82e3 84 return gpiochip_get_desc(chip, pin);
e29482e8 85}
0d1c28a4 86
0d1c28a4
MN
87static irqreturn_t acpi_gpio_irq_handler(int irq, void *data)
88{
6072b9dc 89 struct acpi_gpio_event *event = data;
0d1c28a4 90
6072b9dc 91 acpi_evaluate_object(event->handle, NULL, NULL, NULL);
0d1c28a4
MN
92
93 return IRQ_HANDLED;
94}
95
7fc7acb9
RW
96static irqreturn_t acpi_gpio_irq_handler_evt(int irq, void *data)
97{
4b01a14b 98 struct acpi_gpio_event *event = data;
7fc7acb9 99
4b01a14b 100 acpi_execute_simple_method(event->handle, NULL, event->pin);
7fc7acb9
RW
101
102 return IRQ_HANDLED;
103}
104
aa92b6f6 105static void acpi_gpio_chip_dh(acpi_handle handle, void *data)
7fc7acb9
RW
106{
107 /* The address of this function is used as a key. */
108}
109
6072b9dc
MW
110static acpi_status acpi_gpiochip_request_interrupt(struct acpi_resource *ares,
111 void *context)
0d1c28a4 112{
6072b9dc 113 struct acpi_gpio_chip *acpi_gpio = context;
aa92b6f6 114 struct gpio_chip *chip = acpi_gpio->chip;
6072b9dc 115 struct acpi_resource_gpio *agpio;
7fc7acb9 116 acpi_handle handle, evt_handle;
6072b9dc
MW
117 struct acpi_gpio_event *event;
118 irq_handler_t handler = NULL;
119 struct gpio_desc *desc;
120 unsigned long irqflags;
121 int ret, pin, irq;
0d1c28a4 122
6072b9dc
MW
123 if (ares->type != ACPI_RESOURCE_TYPE_GPIO)
124 return AE_OK;
125
126 agpio = &ares->data.gpio;
127 if (agpio->connection_type != ACPI_RESOURCE_GPIO_TYPE_INT)
128 return AE_OK;
0d1c28a4
MN
129
130 handle = ACPI_HANDLE(chip->dev);
6072b9dc
MW
131 pin = agpio->pin_table[0];
132
133 if (pin <= 255) {
134 char ev_name[5];
135 sprintf(ev_name, "_%c%02X",
136 agpio->triggering == ACPI_EDGE_SENSITIVE ? 'E' : 'L',
137 pin);
138 if (ACPI_SUCCESS(acpi_get_handle(handle, ev_name, &evt_handle)))
139 handler = acpi_gpio_irq_handler;
140 }
141 if (!handler) {
142 if (ACPI_SUCCESS(acpi_get_handle(handle, "_EVT", &evt_handle)))
143 handler = acpi_gpio_irq_handler_evt;
144 }
145 if (!handler)
146 return AE_BAD_PARAMETER;
0d1c28a4 147
abdc08a3 148 desc = gpiochip_request_own_desc(chip, pin, "ACPI:Event");
6072b9dc 149 if (IS_ERR(desc)) {
6072b9dc
MW
150 dev_err(chip->dev, "Failed to request GPIO\n");
151 return AE_ERROR;
152 }
0d1c28a4 153
6072b9dc 154 gpiod_direction_input(desc);
0d1c28a4 155
d74be6df 156 ret = gpio_lock_as_irq(chip, pin);
6072b9dc
MW
157 if (ret) {
158 dev_err(chip->dev, "Failed to lock GPIO as interrupt\n");
159 goto fail_free_desc;
160 }
0d1c28a4 161
6072b9dc
MW
162 irq = gpiod_to_irq(desc);
163 if (irq < 0) {
164 dev_err(chip->dev, "Failed to translate GPIO to IRQ\n");
165 goto fail_unlock_irq;
166 }
7fc7acb9 167
6072b9dc
MW
168 irqflags = IRQF_ONESHOT;
169 if (agpio->triggering == ACPI_LEVEL_SENSITIVE) {
170 if (agpio->polarity == ACPI_ACTIVE_HIGH)
171 irqflags |= IRQF_TRIGGER_HIGH;
172 else
173 irqflags |= IRQF_TRIGGER_LOW;
174 } else {
175 switch (agpio->polarity) {
176 case ACPI_ACTIVE_HIGH:
177 irqflags |= IRQF_TRIGGER_RISING;
178 break;
179 case ACPI_ACTIVE_LOW:
180 irqflags |= IRQF_TRIGGER_FALLING;
181 break;
182 default:
183 irqflags |= IRQF_TRIGGER_RISING |
184 IRQF_TRIGGER_FALLING;
185 break;
7fc7acb9 186 }
6072b9dc 187 }
aa92b6f6 188
6072b9dc
MW
189 event = kzalloc(sizeof(*event), GFP_KERNEL);
190 if (!event)
191 goto fail_unlock_irq;
7fc7acb9 192
6072b9dc
MW
193 event->handle = evt_handle;
194 event->irq = irq;
195 event->pin = pin;
e46cf32c 196 event->desc = desc;
7fc7acb9 197
6072b9dc
MW
198 ret = request_threaded_irq(event->irq, NULL, handler, irqflags,
199 "ACPI:Event", event);
200 if (ret) {
201 dev_err(chip->dev, "Failed to setup interrupt handler for %d\n",
202 event->irq);
203 goto fail_free_event;
0d1c28a4 204 }
6072b9dc
MW
205
206 list_add_tail(&event->node, &acpi_gpio->events);
207 return AE_OK;
208
209fail_free_event:
210 kfree(event);
211fail_unlock_irq:
d74be6df 212 gpio_unlock_as_irq(chip, pin);
6072b9dc
MW
213fail_free_desc:
214 gpiochip_free_own_desc(desc);
215
216 return AE_ERROR;
0d1c28a4 217}
7fc7acb9 218
70b53411 219/**
6072b9dc 220 * acpi_gpiochip_request_interrupts() - Register isr for gpio chip ACPI events
afa82fab 221 * @chip: GPIO chip
70b53411 222 *
6072b9dc
MW
223 * ACPI5 platforms can use GPIO signaled ACPI events. These GPIO interrupts are
224 * handled by ACPI event methods which need to be called from the GPIO
225 * chip's interrupt handler. acpi_gpiochip_request_interrupts finds out which
226 * gpio pins have acpi event methods and assigns interrupt handlers that calls
227 * the acpi event methods for those pins.
228 */
afa82fab 229void acpi_gpiochip_request_interrupts(struct gpio_chip *chip)
6072b9dc 230{
afa82fab
MW
231 struct acpi_gpio_chip *acpi_gpio;
232 acpi_handle handle;
233 acpi_status status;
234
235 if (!chip->dev || !chip->to_irq)
236 return;
6072b9dc 237
afa82fab
MW
238 handle = ACPI_HANDLE(chip->dev);
239 if (!handle)
240 return;
241
242 status = acpi_get_data(handle, acpi_gpio_chip_dh, (void **)&acpi_gpio);
243 if (ACPI_FAILURE(status))
6072b9dc
MW
244 return;
245
246 INIT_LIST_HEAD(&acpi_gpio->events);
247 acpi_walk_resources(ACPI_HANDLE(chip->dev), "_AEI",
248 acpi_gpiochip_request_interrupt, acpi_gpio);
249}
250
251/**
252 * acpi_gpiochip_free_interrupts() - Free GPIO ACPI event interrupts.
afa82fab 253 * @chip: GPIO chip
70b53411 254 *
6072b9dc
MW
255 * Free interrupts associated with GPIO ACPI event method for the given
256 * GPIO chip.
70b53411 257 */
afa82fab 258void acpi_gpiochip_free_interrupts(struct gpio_chip *chip)
70b53411 259{
afa82fab 260 struct acpi_gpio_chip *acpi_gpio;
4b01a14b 261 struct acpi_gpio_event *event, *ep;
afa82fab
MW
262 acpi_handle handle;
263 acpi_status status;
264
265 if (!chip->dev || !chip->to_irq)
266 return;
70b53411 267
afa82fab
MW
268 handle = ACPI_HANDLE(chip->dev);
269 if (!handle)
270 return;
271
272 status = acpi_get_data(handle, acpi_gpio_chip_dh, (void **)&acpi_gpio);
273 if (ACPI_FAILURE(status))
70b53411
MW
274 return;
275
4b01a14b 276 list_for_each_entry_safe_reverse(event, ep, &acpi_gpio->events, node) {
6072b9dc
MW
277 struct gpio_desc *desc;
278
279 free_irq(event->irq, event);
e46cf32c 280 desc = event->desc;
6072b9dc
MW
281 if (WARN_ON(IS_ERR(desc)))
282 continue;
d74be6df 283 gpio_unlock_as_irq(chip, event->pin);
6072b9dc 284 gpiochip_free_own_desc(desc);
4b01a14b
MW
285 list_del(&event->node);
286 kfree(event);
70b53411 287 }
70b53411 288}
70b53411 289
12028d2d
MW
290struct acpi_gpio_lookup {
291 struct acpi_gpio_info info;
292 int index;
0d9a693c 293 int pin_index;
936e15dd 294 struct gpio_desc *desc;
12028d2d
MW
295 int n;
296};
297
298static int acpi_find_gpio(struct acpi_resource *ares, void *data)
299{
300 struct acpi_gpio_lookup *lookup = data;
301
302 if (ares->type != ACPI_RESOURCE_TYPE_GPIO)
303 return 1;
304
936e15dd 305 if (lookup->n++ == lookup->index && !lookup->desc) {
12028d2d 306 const struct acpi_resource_gpio *agpio = &ares->data.gpio;
0d9a693c
MW
307 int pin_index = lookup->pin_index;
308
309 if (pin_index >= agpio->pin_table_length)
310 return 1;
12028d2d 311
936e15dd 312 lookup->desc = acpi_get_gpiod(agpio->resource_source.string_ptr,
0d9a693c 313 agpio->pin_table[pin_index]);
12028d2d
MW
314 lookup->info.gpioint =
315 agpio->connection_type == ACPI_RESOURCE_GPIO_TYPE_INT;
0d9a693c
MW
316
317 /*
318 * ActiveLow is only specified for GpioInt resource. If
319 * GpioIo is used then the only way to set the flag is
320 * to use _DSD "gpios" property.
321 */
322 if (lookup->info.gpioint)
323 lookup->info.active_low =
324 agpio->polarity == ACPI_ACTIVE_LOW;
12028d2d
MW
325 }
326
327 return 1;
328}
329
330/**
936e15dd 331 * acpi_get_gpiod_by_index() - get a GPIO descriptor from device resources
0d9a693c
MW
332 * @adev: pointer to a ACPI device to get GPIO from
333 * @propname: Property name of the GPIO (optional)
12028d2d
MW
334 * @index: index of GpioIo/GpioInt resource (starting from %0)
335 * @info: info pointer to fill in (optional)
336 *
0d9a693c 337 * Function goes through ACPI resources for @adev and based on @index looks
936e15dd 338 * up a GpioIo/GpioInt resource, translates it to the Linux GPIO descriptor,
12028d2d
MW
339 * and returns it. @index matches GpioIo/GpioInt resources only so if there
340 * are total %3 GPIO resources, the index goes from %0 to %2.
341 *
0d9a693c
MW
342 * If @propname is specified the GPIO is looked using device property. In
343 * that case @index is used to select the GPIO entry in the property value
344 * (in case of multiple).
345 *
936e15dd 346 * If the GPIO cannot be translated or there is an error an ERR_PTR is
12028d2d
MW
347 * returned.
348 *
349 * Note: if the GPIO resource has multiple entries in the pin list, this
350 * function only returns the first.
351 */
0d9a693c
MW
352struct gpio_desc *acpi_get_gpiod_by_index(struct acpi_device *adev,
353 const char *propname, int index,
936e15dd 354 struct acpi_gpio_info *info)
12028d2d
MW
355{
356 struct acpi_gpio_lookup lookup;
357 struct list_head resource_list;
0d9a693c 358 bool active_low = false;
12028d2d
MW
359 int ret;
360
0d9a693c 361 if (!adev)
936e15dd 362 return ERR_PTR(-ENODEV);
12028d2d
MW
363
364 memset(&lookup, 0, sizeof(lookup));
365 lookup.index = index;
12028d2d 366
0d9a693c
MW
367 if (propname) {
368 struct acpi_reference_args args;
369
370 dev_dbg(&adev->dev, "GPIO: looking up %s\n", propname);
371
372 memset(&args, 0, sizeof(args));
373 ret = acpi_dev_get_property_reference(adev, propname, NULL,
374 index, &args);
375 if (ret)
376 return ERR_PTR(ret);
377
378 /*
379 * The property was found and resolved so need to
380 * lookup the GPIO based on returned args instead.
381 */
382 adev = args.adev;
383 if (args.nargs >= 2) {
384 lookup.index = args.args[0];
385 lookup.pin_index = args.args[1];
386 /*
387 * 3rd argument, if present is used to
388 * specify active_low.
389 */
390 if (args.nargs >= 3)
391 active_low = !!args.args[2];
392 }
393
394 dev_dbg(&adev->dev, "GPIO: _DSD returned %s %zd %llu %llu %llu\n",
395 dev_name(&adev->dev), args.nargs,
396 args.args[0], args.args[1], args.args[2]);
397 } else {
398 dev_dbg(&adev->dev, "GPIO: looking up %d in _CRS\n", index);
399 }
400
12028d2d
MW
401 INIT_LIST_HEAD(&resource_list);
402 ret = acpi_dev_get_resources(adev, &resource_list, acpi_find_gpio,
403 &lookup);
404 if (ret < 0)
936e15dd 405 return ERR_PTR(ret);
12028d2d
MW
406
407 acpi_dev_free_resource_list(&resource_list);
408
0d9a693c 409 if (lookup.desc && info) {
12028d2d 410 *info = lookup.info;
0d9a693c
MW
411 if (active_low)
412 info->active_low = active_low;
413 }
12028d2d 414
a00580c2 415 return lookup.desc ? lookup.desc : ERR_PTR(-ENOENT);
12028d2d 416}
664e3e5a 417
473ed7be
MW
418static acpi_status
419acpi_gpio_adr_space_handler(u32 function, acpi_physical_address address,
420 u32 bits, u64 *value, void *handler_context,
421 void *region_context)
422{
423 struct acpi_gpio_chip *achip = region_context;
424 struct gpio_chip *chip = achip->chip;
425 struct acpi_resource_gpio *agpio;
426 struct acpi_resource *ares;
c15d821d 427 int pin_index = (int)address;
473ed7be
MW
428 acpi_status status;
429 bool pull_up;
c15d821d 430 int length;
473ed7be
MW
431 int i;
432
433 status = acpi_buffer_to_resource(achip->conn_info.connection,
434 achip->conn_info.length, &ares);
435 if (ACPI_FAILURE(status))
436 return status;
437
438 if (WARN_ON(ares->type != ACPI_RESOURCE_TYPE_GPIO)) {
439 ACPI_FREE(ares);
440 return AE_BAD_PARAMETER;
441 }
442
443 agpio = &ares->data.gpio;
444 pull_up = agpio->pin_config == ACPI_PIN_CONFIG_PULLUP;
445
446 if (WARN_ON(agpio->io_restriction == ACPI_IO_RESTRICT_INPUT &&
447 function == ACPI_WRITE)) {
448 ACPI_FREE(ares);
449 return AE_BAD_PARAMETER;
450 }
451
c15d821d
SP
452 length = min(agpio->pin_table_length, (u16)(pin_index + bits));
453 for (i = pin_index; i < length; ++i) {
473ed7be
MW
454 unsigned pin = agpio->pin_table[i];
455 struct acpi_gpio_connection *conn;
456 struct gpio_desc *desc;
457 bool found;
458
473ed7be
MW
459 mutex_lock(&achip->conn_lock);
460
461 found = false;
462 list_for_each_entry(conn, &achip->conns, node) {
e46cf32c 463 if (conn->pin == pin) {
473ed7be 464 found = true;
e46cf32c 465 desc = conn->desc;
473ed7be
MW
466 break;
467 }
468 }
469 if (!found) {
abdc08a3
AC
470 desc = gpiochip_request_own_desc(chip, pin,
471 "ACPI:OpRegion");
e46cf32c 472 if (IS_ERR(desc)) {
473ed7be
MW
473 status = AE_ERROR;
474 mutex_unlock(&achip->conn_lock);
475 goto out;
476 }
477
478 switch (agpio->io_restriction) {
479 case ACPI_IO_RESTRICT_INPUT:
480 gpiod_direction_input(desc);
481 break;
482 case ACPI_IO_RESTRICT_OUTPUT:
483 /*
484 * ACPI GPIO resources don't contain an
485 * initial value for the GPIO. Therefore we
486 * deduce that value from the pull field
487 * instead. If the pin is pulled up we
488 * assume default to be high, otherwise
489 * low.
490 */
491 gpiod_direction_output(desc, pull_up);
492 break;
493 default:
494 /*
495 * Assume that the BIOS has configured the
496 * direction and pull accordingly.
497 */
498 break;
499 }
500
501 conn = kzalloc(sizeof(*conn), GFP_KERNEL);
502 if (!conn) {
503 status = AE_NO_MEMORY;
504 gpiochip_free_own_desc(desc);
505 mutex_unlock(&achip->conn_lock);
506 goto out;
507 }
508
e46cf32c 509 conn->pin = pin;
473ed7be
MW
510 conn->desc = desc;
511 list_add_tail(&conn->node, &achip->conns);
512 }
513
514 mutex_unlock(&achip->conn_lock);
515
516 if (function == ACPI_WRITE)
dc62b56a
AL
517 gpiod_set_raw_value_cansleep(desc,
518 !!((1 << i) & *value));
473ed7be 519 else
dc62b56a 520 *value |= (u64)gpiod_get_raw_value_cansleep(desc) << i;
473ed7be
MW
521 }
522
523out:
524 ACPI_FREE(ares);
525 return status;
526}
527
528static void acpi_gpiochip_request_regions(struct acpi_gpio_chip *achip)
529{
530 struct gpio_chip *chip = achip->chip;
531 acpi_handle handle = ACPI_HANDLE(chip->dev);
532 acpi_status status;
533
534 INIT_LIST_HEAD(&achip->conns);
535 mutex_init(&achip->conn_lock);
536 status = acpi_install_address_space_handler(handle, ACPI_ADR_SPACE_GPIO,
537 acpi_gpio_adr_space_handler,
538 NULL, achip);
539 if (ACPI_FAILURE(status))
540 dev_err(chip->dev, "Failed to install GPIO OpRegion handler\n");
541}
542
543static void acpi_gpiochip_free_regions(struct acpi_gpio_chip *achip)
544{
545 struct gpio_chip *chip = achip->chip;
546 acpi_handle handle = ACPI_HANDLE(chip->dev);
547 struct acpi_gpio_connection *conn, *tmp;
548 acpi_status status;
549
550 status = acpi_remove_address_space_handler(handle, ACPI_ADR_SPACE_GPIO,
551 acpi_gpio_adr_space_handler);
552 if (ACPI_FAILURE(status)) {
553 dev_err(chip->dev, "Failed to remove GPIO OpRegion handler\n");
554 return;
555 }
556
557 list_for_each_entry_safe_reverse(conn, tmp, &achip->conns, node) {
558 gpiochip_free_own_desc(conn->desc);
559 list_del(&conn->node);
560 kfree(conn);
561 }
562}
563
664e3e5a
MW
564void acpi_gpiochip_add(struct gpio_chip *chip)
565{
aa92b6f6
MW
566 struct acpi_gpio_chip *acpi_gpio;
567 acpi_handle handle;
568 acpi_status status;
569
e9595f84
MW
570 if (!chip || !chip->dev)
571 return;
572
aa92b6f6
MW
573 handle = ACPI_HANDLE(chip->dev);
574 if (!handle)
575 return;
576
577 acpi_gpio = kzalloc(sizeof(*acpi_gpio), GFP_KERNEL);
578 if (!acpi_gpio) {
579 dev_err(chip->dev,
580 "Failed to allocate memory for ACPI GPIO chip\n");
581 return;
582 }
583
584 acpi_gpio->chip = chip;
585
586 status = acpi_attach_data(handle, acpi_gpio_chip_dh, acpi_gpio);
587 if (ACPI_FAILURE(status)) {
588 dev_err(chip->dev, "Failed to attach ACPI GPIO chip\n");
589 kfree(acpi_gpio);
590 return;
591 }
592
473ed7be 593 acpi_gpiochip_request_regions(acpi_gpio);
664e3e5a
MW
594}
595
596void acpi_gpiochip_remove(struct gpio_chip *chip)
597{
aa92b6f6
MW
598 struct acpi_gpio_chip *acpi_gpio;
599 acpi_handle handle;
600 acpi_status status;
601
e9595f84
MW
602 if (!chip || !chip->dev)
603 return;
604
aa92b6f6
MW
605 handle = ACPI_HANDLE(chip->dev);
606 if (!handle)
607 return;
608
609 status = acpi_get_data(handle, acpi_gpio_chip_dh, (void **)&acpi_gpio);
610 if (ACPI_FAILURE(status)) {
611 dev_warn(chip->dev, "Failed to retrieve ACPI GPIO chip\n");
612 return;
613 }
614
473ed7be 615 acpi_gpiochip_free_regions(acpi_gpio);
aa92b6f6
MW
616
617 acpi_detach_data(handle, acpi_gpio_chip_dh);
618 kfree(acpi_gpio);
664e3e5a 619}
This page took 0.13274 seconds and 5 git commands to generate.