summaryrefslogtreecommitdiff
path: root/drivers/extcon/extcon-axp288.c
blob: 19856dddade62c5592701f8fd5842857ec24813a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
// SPDX-License-Identifier: GPL-2.0-only
/*
 * extcon-axp288.c - X-Power AXP288 PMIC extcon cable detection driver
 *
 * Copyright (c) 2017-2018 Hans de Goede <hdegoede@redhat.com>
 * Copyright (C) 2015 Intel Corporation
 * Author: Ramakrishna Pallala <ramakrishna.pallala@intel.com>
 */

#include <linux/acpi.h>
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/io.h>
#include <linux/slab.h>
#include <linux/interrupt.h>
#include <linux/platform_device.h>
#include <linux/property.h>
#include <linux/notifier.h>
#include <linux/extcon-provider.h>
#include <linux/regmap.h>
#include <linux/mfd/axp20x.h>
#include <linux/usb/role.h>
#include <linux/workqueue.h>

#include <asm/cpu_device_id.h>
#include <asm/intel-family.h>
#include <asm/iosf_mbi.h>

/* Power source status register */
#define PS_STAT_VBUS_TRIGGER		BIT(0)
#define PS_STAT_BAT_CHRG_DIR		BIT(2)
#define PS_STAT_VBUS_ABOVE_VHOLD	BIT(3)
#define PS_STAT_VBUS_VALID		BIT(4)
#define PS_STAT_VBUS_PRESENT		BIT(5)

/* BC module global register */
#define BC_GLOBAL_RUN			BIT(0)
#define BC_GLOBAL_DET_STAT		BIT(2)
#define BC_GLOBAL_DBP_TOUT		BIT(3)
#define BC_GLOBAL_VLGC_COM_SEL		BIT(4)
#define BC_GLOBAL_DCD_TOUT_MASK		(BIT(6)|BIT(5))
#define BC_GLOBAL_DCD_TOUT_300MS	0
#define BC_GLOBAL_DCD_TOUT_100MS	1
#define BC_GLOBAL_DCD_TOUT_500MS	2
#define BC_GLOBAL_DCD_TOUT_900MS	3
#define BC_GLOBAL_DCD_DET_SEL		BIT(7)

/* BC module vbus control and status register */
#define VBUS_CNTL_DPDM_PD_EN		BIT(4)
#define VBUS_CNTL_DPDM_FD_EN		BIT(5)
#define VBUS_CNTL_FIRST_PO_STAT		BIT(6)

/* BC USB status register */
#define USB_STAT_BUS_STAT_MASK		(BIT(3)|BIT(2)|BIT(1)|BIT(0))
#define USB_STAT_BUS_STAT_SHIFT		0
#define USB_STAT_BUS_STAT_ATHD		0
#define USB_STAT_BUS_STAT_CONN		1
#define USB_STAT_BUS_STAT_SUSP		2
#define USB_STAT_BUS_STAT_CONF		3
#define USB_STAT_USB_SS_MODE		BIT(4)
#define USB_STAT_DEAD_BAT_DET		BIT(6)
#define USB_STAT_DBP_UNCFG		BIT(7)

/* BC detect status register */
#define DET_STAT_MASK			(BIT(7)|BIT(6)|BIT(5))
#define DET_STAT_SHIFT			5
#define DET_STAT_SDP			1
#define DET_STAT_CDP			2
#define DET_STAT_DCP			3

enum axp288_extcon_reg {
	AXP288_PS_STAT_REG		= 0x00,
	AXP288_PS_BOOT_REASON_REG	= 0x02,
	AXP288_BC_GLOBAL_REG		= 0x2c,
	AXP288_BC_VBUS_CNTL_REG		= 0x2d,
	AXP288_BC_USB_STAT_REG		= 0x2e,
	AXP288_BC_DET_STAT_REG		= 0x2f,
};

enum axp288_extcon_irq {
	VBUS_FALLING_IRQ = 0,
	VBUS_RISING_IRQ,
	MV_CHNG_IRQ,
	BC_USB_CHNG_IRQ,
	EXTCON_IRQ_END,
};

static const unsigned int axp288_extcon_cables[] = {
	EXTCON_CHG_USB_SDP,
	EXTCON_CHG_USB_CDP,
	EXTCON_CHG_USB_DCP,
	EXTCON_USB,
	EXTCON_NONE,
};

struct axp288_extcon_info {
	struct device *dev;
	struct regmap *regmap;
	struct regmap_irq_chip_data *regmap_irqc;
	struct usb_role_switch *role_sw;
	struct work_struct role_work;
	int irq[EXTCON_IRQ_END];
	struct extcon_dev *edev;
	struct extcon_dev *id_extcon;
	struct notifier_block id_nb;
	unsigned int previous_cable;
	bool vbus_attach;
};

static const struct x86_cpu_id cherry_trail_cpu_ids[] = {
	X86_MATCH_VFM(INTEL_ATOM_AIRMONT,	NULL),
	{}
};

/* Power up/down reason string array */
static const char * const axp288_pwr_up_down_info[] = {
	"Last wake caused by user pressing the power button",
	"Last wake caused by a charger insertion",
	"Last wake caused by a battery insertion",
	"Last wake caused by SOC initiated global reset",
	"Last wake caused by cold reset",
	"Last shutdown caused by PMIC UVLO threshold",
	"Last shutdown caused by SOC initiated cold off",
	"Last shutdown caused by user pressing the power button",
};

/*
 * Decode and log the given "reset source indicator" (rsi)
 * register and then clear it.
 */
static void axp288_extcon_log_rsi(struct axp288_extcon_info *info)
{
	unsigned int val, i, clear_mask = 0;
	unsigned long bits;
	int ret;

	ret = regmap_read(info->regmap, AXP288_PS_BOOT_REASON_REG, &val);
	if (ret < 0) {
		dev_err(info->dev, "failed to read reset source indicator\n");
		return;
	}

	bits = val & GENMASK(ARRAY_SIZE(axp288_pwr_up_down_info) - 1, 0);
	for_each_set_bit(i, &bits, ARRAY_SIZE(axp288_pwr_up_down_info))
		dev_dbg(info->dev, "%s\n", axp288_pwr_up_down_info[i]);
	clear_mask = bits;

	/* Clear the register value for next reboot (write 1 to clear bit) */
	regmap_write(info->regmap, AXP288_PS_BOOT_REASON_REG, clear_mask);
}

/*
 * The below code to control the USB role-switch on devices with an AXP288
 * may seem out of place, but there are 2 reasons why this is the best place
 * to control the USB role-switch on such devices:
 * 1) On many devices the USB role is controlled by AML code, but the AML code
 *    only switches between the host and none roles, because of Windows not
 *    really using device mode. To make device mode work we need to toggle
 *    between the none/device roles based on Vbus presence, and this driver
 *    gets interrupts on Vbus insertion / removal.
 * 2) In order for our BC1.2 charger detection to work properly the role
 *    mux must be properly set to device mode before we do the detection.
 */

/* Returns the id-pin value, note pulled low / false == host-mode */
static bool axp288_get_id_pin(struct axp288_extcon_info *info)
{
	enum usb_role role;

	if (info->id_extcon)
		return extcon_get_state(info->id_extcon, EXTCON_USB_HOST) <= 0;

	/* We cannot access the id-pin, see what mode the AML code has set */
	role = usb_role_switch_get_role(info->role_sw);
	return role != USB_ROLE_HOST;
}

static void axp288_usb_role_work(struct work_struct *work)
{
	struct axp288_extcon_info *info =
		container_of(work, struct axp288_extcon_info, role_work);
	enum usb_role role;
	bool id_pin;
	int ret;

	id_pin = axp288_get_id_pin(info);
	if (!id_pin)
		role = USB_ROLE_HOST;
	else if (info->vbus_attach)
		role = USB_ROLE_DEVICE;
	else
		role = USB_ROLE_NONE;

	ret = usb_role_switch_set_role(info->role_sw, role);
	if (ret)
		dev_err(info->dev, "failed to set role: %d\n", ret);
}

static bool axp288_get_vbus_attach(struct axp288_extcon_info *info)
{
	int ret, pwr_stat;

	ret = regmap_read(info->regmap, AXP288_PS_STAT_REG, &pwr_stat);
	if (ret < 0) {
		dev_err(info->dev, "failed to read vbus status\n");
		return false;
	}

	return !!(pwr_stat & PS_STAT_VBUS_VALID);
}

static int axp288_handle_chrg_det_event(struct axp288_extcon_info *info)
{
	int ret, stat, cfg;
	u8 chrg_type;
	unsigned int cable = info->previous_cable;
	bool vbus_attach = false;

	ret = iosf_mbi_block_punit_i2c_access();
	if (ret < 0)
		return ret;

	vbus_attach = axp288_get_vbus_attach(info);
	if (!vbus_attach)
		goto no_vbus;

	/* Check charger detection completion status */
	ret = regmap_read(info->regmap, AXP288_BC_GLOBAL_REG, &cfg);
	if (ret < 0)
		goto dev_det_ret;
	if (cfg & BC_GLOBAL_DET_STAT) {
		dev_dbg(info->dev, "can't complete the charger detection\n");
		goto dev_det_ret;
	}

	ret = regmap_read(info->regmap, AXP288_BC_DET_STAT_REG, &stat);
	if (ret < 0)
		goto dev_det_ret;

	chrg_type = (stat & DET_STAT_MASK) >> DET_STAT_SHIFT;

	switch (chrg_type) {
	case DET_STAT_SDP:
		dev_dbg(info->dev, "sdp cable is connected\n");
		cable = EXTCON_CHG_USB_SDP;
		break;
	case DET_STAT_CDP:
		dev_dbg(info->dev, "cdp cable is connected\n");
		cable = EXTCON_CHG_USB_CDP;
		break;
	case DET_STAT_DCP:
		dev_dbg(info->dev, "dcp cable is connected\n");
		cable = EXTCON_CHG_USB_DCP;
		break;
	default:
		dev_warn(info->dev, "unknown (reserved) bc detect result\n");
		cable = EXTCON_CHG_USB_SDP;
	}

no_vbus:
	iosf_mbi_unblock_punit_i2c_access();

	extcon_set_state_sync(info->edev, info->previous_cable, false);
	if (info->previous_cable == EXTCON_CHG_USB_SDP)
		extcon_set_state_sync(info->edev, EXTCON_USB, false);

	if (vbus_attach) {
		extcon_set_state_sync(info->edev, cable, vbus_attach);
		if (cable == EXTCON_CHG_USB_SDP)
			extcon_set_state_sync(info->edev, EXTCON_USB,
						vbus_attach);

		info->previous_cable = cable;
	}

	if (info->role_sw && info->vbus_attach != vbus_attach) {
		info->vbus_attach = vbus_attach;
		/* Setting the role can take a while */
		queue_work(system_long_wq, &info->role_work);
	}

	return 0;

dev_det_ret:
	iosf_mbi_unblock_punit_i2c_access();

	if (ret < 0)
		dev_err(info->dev, "failed to detect BC Mod\n");

	return ret;
}

static int axp288_extcon_id_evt(struct notifier_block *nb,
				unsigned long event, void *param)
{
	struct axp288_extcon_info *info =
		container_of(nb, struct axp288_extcon_info, id_nb);

	/* We may not sleep and setting the role can take a while */
	queue_work(system_long_wq, &info->role_work);

	return NOTIFY_OK;
}

static irqreturn_t axp288_extcon_isr(int irq, void *data)
{
	struct axp288_extcon_info *info = data;
	int ret;

	ret = axp288_handle_chrg_det_event(info);
	if (ret < 0)
		dev_err(info->dev, "failed to handle the interrupt\n");

	return IRQ_HANDLED;
}

static int axp288_extcon_enable(struct axp288_extcon_info *info)
{
	int ret = 0;

	ret = iosf_mbi_block_punit_i2c_access();
	if (ret < 0)
		return ret;

	regmap_update_bits(info->regmap, AXP288_BC_GLOBAL_REG,
						BC_GLOBAL_RUN, 0);
	/* Enable the charger detection logic */
	regmap_update_bits(info->regmap, AXP288_BC_GLOBAL_REG,
					BC_GLOBAL_RUN, BC_GLOBAL_RUN);

	iosf_mbi_unblock_punit_i2c_access();

	return ret;
}

static void axp288_put_role_sw(void *data)
{
	struct axp288_extcon_info *info = data;

	cancel_work_sync(&info->role_work);
	usb_role_switch_put(info->role_sw);
}

static int axp288_extcon_find_role_sw(struct axp288_extcon_info *info)
{
	const struct software_node *swnode;
	struct fwnode_handle *fwnode;

	if (!x86_match_cpu(cherry_trail_cpu_ids))
		return 0;

	swnode = software_node_find_by_name(NULL, "intel-xhci-usb-sw");
	if (!swnode)
		return -EPROBE_DEFER;

	fwnode = software_node_fwnode(swnode);
	info->role_sw = usb_role_switch_find_by_fwnode(fwnode);
	fwnode_handle_put(fwnode);

	return info->role_sw ? 0 : -EPROBE_DEFER;
}

static int axp288_extcon_probe(struct platform_device *pdev)
{
	struct axp288_extcon_info *info;
	struct axp20x_dev *axp20x = dev_get_drvdata(pdev->dev.parent);
	struct device *dev = &pdev->dev;
	struct acpi_device *adev;
	int ret, i, pirq;

	info = devm_kzalloc(&pdev->dev, sizeof(*info), GFP_KERNEL);
	if (!info)
		return -ENOMEM;

	info->dev = &pdev->dev;
	info->regmap = axp20x->regmap;
	info->regmap_irqc = axp20x->regmap_irqc;
	info->previous_cable = EXTCON_NONE;
	INIT_WORK(&info->role_work, axp288_usb_role_work);
	info->id_nb.notifier_call = axp288_extcon_id_evt;

	platform_set_drvdata(pdev, info);

	ret = axp288_extcon_find_role_sw(info);
	if (ret)
		return ret;

	if (info->role_sw) {
		ret = devm_add_action_or_reset(dev, axp288_put_role_sw, info);
		if (ret)
			return ret;

		adev = acpi_dev_get_first_match_dev("INT3496", NULL, -1);
		if (adev) {
			info->id_extcon = extcon_get_extcon_dev(acpi_dev_name(adev));
			acpi_dev_put(adev);
			if (IS_ERR(info->id_extcon))
				return PTR_ERR(info->id_extcon);

			dev_info(dev, "controlling USB role\n");
		} else {
			dev_info(dev, "controlling USB role based on Vbus presence\n");
		}
	}

	ret = iosf_mbi_block_punit_i2c_access();
	if (ret < 0)
		return ret;

	info->vbus_attach = axp288_get_vbus_attach(info);

	axp288_extcon_log_rsi(info);

	iosf_mbi_unblock_punit_i2c_access();

	/* Initialize extcon device */
	info->edev = devm_extcon_dev_allocate(&pdev->dev,
					      axp288_extcon_cables);
	if (IS_ERR(info->edev)) {
		dev_err(&pdev->dev, "failed to allocate memory for extcon\n");
		return PTR_ERR(info->edev);
	}

	/* Register extcon device */
	ret = devm_extcon_dev_register(&pdev->dev, info->edev);
	if (ret) {
		dev_err(&pdev->dev, "failed to register extcon device\n");
		return ret;
	}

	for (i = 0; i < EXTCON_IRQ_END; i++) {
		pirq = platform_get_irq(pdev, i);
		if (pirq < 0)
			return pirq;

		info->irq[i] = regmap_irq_get_virq(info->regmap_irqc, pirq);
		if (info->irq[i] < 0) {
			dev_err(&pdev->dev,
				"failed to get virtual interrupt=%d\n", pirq);
			ret = info->irq[i];
			return ret;
		}

		ret = devm_request_threaded_irq(&pdev->dev, info->irq[i],
				NULL, axp288_extcon_isr,
				IRQF_ONESHOT | IRQF_NO_SUSPEND,
				pdev->name, info);
		if (ret) {
			dev_err(&pdev->dev, "failed to request interrupt=%d\n",
							info->irq[i]);
			return ret;
		}
	}

	if (info->id_extcon) {
		ret = devm_extcon_register_notifier_all(dev, info->id_extcon,
							&info->id_nb);
		if (ret)
			return ret;
	}

	/* Make sure the role-sw is set correctly before doing BC detection */
	if (info->role_sw) {
		queue_work(system_long_wq, &info->role_work);
		flush_work(&info->role_work);
	}

	/* Start charger cable type detection */
	ret = axp288_extcon_enable(info);
	if (ret < 0)
		return ret;

	devm_device_init_wakeup(dev);
	platform_set_drvdata(pdev, info);

	return 0;
}

static int __maybe_unused axp288_extcon_suspend(struct device *dev)
{
	struct axp288_extcon_info *info = dev_get_drvdata(dev);

	if (device_may_wakeup(dev))
		enable_irq_wake(info->irq[VBUS_RISING_IRQ]);

	return 0;
}

static int __maybe_unused axp288_extcon_resume(struct device *dev)
{
	struct axp288_extcon_info *info = dev_get_drvdata(dev);

	/*
	 * Wakeup when a charger is connected to do charger-type
	 * connection and generate an extcon event which makes the
	 * axp288 charger driver set the input current limit.
	 */
	if (device_may_wakeup(dev))
		disable_irq_wake(info->irq[VBUS_RISING_IRQ]);

	return 0;
}

static SIMPLE_DEV_PM_OPS(axp288_extcon_pm_ops, axp288_extcon_suspend,
			 axp288_extcon_resume);

static const struct platform_device_id axp288_extcon_table[] = {
	{ .name = "axp288_extcon" },
	{},
};
MODULE_DEVICE_TABLE(platform, axp288_extcon_table);

static struct platform_driver axp288_extcon_driver = {
	.probe = axp288_extcon_probe,
	.id_table = axp288_extcon_table,
	.driver = {
		.name = "axp288_extcon",
		.pm = &axp288_extcon_pm_ops,
	},
};
module_platform_driver(axp288_extcon_driver);

MODULE_AUTHOR("Ramakrishna Pallala <ramakrishna.pallala@intel.com>");
MODULE_AUTHOR("Hans de Goede <hdegoede@redhat.com>");
MODULE_DESCRIPTION("X-Powers AXP288 extcon driver");
MODULE_LICENSE("GPL v2");
=|k GV~җ3]>{ SNGP8+Wc~fK5:PRݞ?zT? 74` oI1a}pr揜f/ :7?Pўaj9SLgRL]E5xDq-I` qk瓘 C5nP­Cctt"v\u2]j”ă7%_ٺ`i}AUTg-uR־tw'9MlaXC^ͥ]]Voף:jY e}1וRZjT*-X0U ݞ5띪rFxaNr+Js6XsMt644ƆeF˺#T!p5_j4uhPd[) q8j0~GKaJ3H6G),/G1aޙVk-Z:8jP"{R5Ֆjr,qs: մ5jڨ^U1ɨjGVs$ SؿkWr~Z G"q:X gc3uH/)3.w四)ͧ8?_A.ZF@)JHO y./eye%&KP#LxBuVut::O!pkb% Bz?B@rI+"LLtympuNId/ZF8Թ! GwECSeZ0"µݼoC$9W M Hc n "|/)se%w6U&}R]^l4j F=g p\*hKO)㺆Tm(TPesHzOvep=ZzUlMT{M+z97Mz1<i? H/F̴Y>.d߈.5QY;ԢN`&Nc,jj.>E/0хc/J4AӊOdrrjh2M㖞DR<$zR 36?+jiL0.=,6@}t*mF9˺=l~1bpԳz/ZsD:Q[(./P3+%?\O5&hԍ9[eSph%խz킥E( V@L}z'Pg{u>^ j*%Rdvz3uN?39:M^}猺֋~ݔ/K82M IߺQ|jumHv #_:%̕ P΢"Y }lhOO2 3NbjmtB-N|Nlo~ZWe".-m͔E"?mss_:Ou%M'];!KQVnv&y@. $Nw8J֕8 v'^s ]wш:Ma&.'=]ڃdtzxU3u+\l.o TNݬf017Ŀ;O"'`<԰_qv_xʄL!-P^-~D_`$ z}8mek_<盥poBJ]ļUмkt{e, 6қ||wZOmZJ):zF:fQy-v - ȷ.ivbNfu0Y$'MydXmPgz~Y#Y ҭGGVs $ j\ (7$} fIp|6 ^]^^LK&RH*9YBgpYRoEgFIr4H[Cf Ƹl$rM#MZQ0~)_4y2%b$lb1?s+7 H-t)55aol7uDOHXOsS4o%hnm2[ulSk3;=g^:}\D9b4CXߔ7Oy§E^ tolV~ItϤ%ywOh\&d\{kw#(cO6=d3~f#Lʦ-UkK^/E Jj<~ -0 |S>~UKxq?!}* $7r^&s7D=c"L[]gg~\v+I'@G^cP 񿽵׳?Mz< 7,ADUnDҸ, Ϋv!bבg#fbvw=f 1RLP=p%Ǟ=p4RuAcFǁ0OJK`Ɍo@ewb*q e/rVa*% `3Ɠ7|V_Ĵ9GY>ˏbl,ɒz&H[{Gf[oHh8 {뵵L|9SZPy#5DxUf( UuN3P_^ݖ~Vԙީ gHu 񼓚lN[[Ϩ soigN4캹~# }wϵ^JlE=\ 2kYϲ??+a΢F{U}&#j#D .ij>TfU}VZ\Ic ,%I['܈rFJFJv5˗窂Kh F_8wXh~e4dJyfן7E~h)JHvnB 0[(V} @mh-ăm1OȢW\ꂌAI ~tolK5DzH-q GY^)×8tkR)JEʝ#.8aB]CU3iU]ߍ<+\--\!Izaq g;*?3R:xD[7iu57;uZi!tI. SXeEܾ=%3xsY^Jv~q9npy{Ó씻(J#6؀Au<``w$kjU\lT׷IUFs_%ĶN쀁E:Fnf r9f{=`'eɍx:u|I!#+!-E~U- ׺L~AٽN@1磰m,?/8,JwzU^TH?79g[ vӜ|PtvJQ4"v x8ЅIs\6kKY"7n4{nGv5̒AH:)rmclwHY>f/R^?RMeI~ϥ# ;ilp~KP-h 5؂_HtD6^iiF֭NF;zH$tn"qc1#8 ş52'*if1 uP]8_If|KXWs/eOs# hp}+H\+z[.'bZn3niZ7Q:FW՞4@쎧x.mYљ4 MPKąIwu7v5D 'Б|05ؑz]Pp, @:;nju,$ S]s= q N`%jq*U'dceUr`k2@y*<@ KNc "芅ŰUm3g3WM}mq$W~:: yԃI^ͺS v>n;e)a ~hsF?_z;4Hs |3Ww#lYׅ[% bávR$p_(i奼rٸT\/׏ '$^?CD3H.۫G%=nX٤\p&а4=.^Pe A|>cZp6" ZPHrA_ECF&pYn'RԑS^p Ԁ'+ĥwi xMCx.o{>+%Xdտdt}N$_6n`#m5& MSǤ &;rñ %{FbKB%ng<˓7Yz%c޷$论J" IVi/k[x-ʑd,]h?9^|k.ē"h; +դ";gӿw~?gD]Vnnqg/BۄVZk /#ȋiX1swĽh+-{>'DH"%{5<]_'?jx]RѴѯg.x*Wީ7m~yUsS-<"hqy D깈//چ˧3Ik}2ʲ}}9$y pۤZ^[z/: G}'%LǨ9eSiGOnM32L':\fApئmKgoؐ+ewոSa])䒮r# Ql]Gqvzߊ' /qM -V߿f/QTbzA )F"S`W'I;N,cw]PQut=%4>d"Kҹ$rշ5jctd>Q@[^'%SHFeIOz). mU>۔wh5yOhmϔ&e帍F2C;(U. Qij0Nxqy?m't?#SrNG# %y2g厾 ǃSW8~pE\fQ8.̑Nӆl.A|𒍠 -\VސS})17L_κO4s ah$BXsj% ʚ[}vg]z"T~/?3ZDp%\O)O{ҔE?"lf9ٝ5v;CmE7fPgj]5{v47}ND까hHS>HVh{+=Qu;\]r_rY|L|^.Qzճ5^]zws5Ycrn~<ǯ@2^ska6fy<ɾȮBOËC%{G<%|E.׵lԛ-:ޑNj$Y! 21sݵfZ5CP;O&|xKbcb&}k)$24e 5cϤC?s 0 ))N4?)MũSx5m5Nm@T qgOy~v5hD^:Z2wT$GN~niLd'\%%)#n W>X5ИB q^]"v,!jMTߤ!E{EWRrRd::87I;5Dզ9x~ )(I8m-k5=#4Oryt0EM09/IK*W5!l`v3| w胠òP}$=xqoK#4?Gir`T~d ]шvo6My1;Rm@uJe8%`2#Y%NI L=V էętJ$TScnh{6rsY&IgN꘮$*/?Ό В2«)Ѣ^mW4MiĊSCQ(+F"Uu/T{ސ?I`N|Zυdajevݱ+C}>cJo(*p]ѧlǵ?z)a5'B -8a|#7U5PNRr(W0VA|a~ΕgIWu9=oF#Om9lߥ~MN hyda(e*^Y/w;v굽OD'Hſ`JH+Mެ*z,.3Q9M0G@Kl&:EZERBYpSږb]=mW_bJ`f|Ih&P֋0YLd P5LQW#H 'fHN&]o:IA/ _EGHoi8o[k8!=I=w?Y>b8^}<Mzm՜:7Lt4nҰkNըEfvG54 I ekÆ^z{>1S lQ/)b7JfѨjd>i .r[_u-AT١v ŒǵJ"Ѣ`{zI#)l O7xQwwEltΖY-}|MMQY2J"cu Y>D.4CWbEXw,y0r0^a%NhŖ8]HbWklt)_a\ /v.AfKU6/B6t_^9tAv`N8 Pf{*?+ rIZbL9ĜTV o?!.,7w+컀~B*L.Xb%Z oUcxvW]HgPum%R5ܯpzk@Z1W7B6Fbr) d B؀a%yD.@e*Rs$VNX7&m-_^#뢦i%v(q(D|6A1,B4c7b٭x^LgEjQURD`Gܴ/.z+bOg#CYi= BO5*C8}UIK@R14P5P(7iv6Pֺ_ZaK6RS.M"=ih6[18jPjޭ"ϩ]SHi|,ws^nHdҦ^%{i:TQE[t),:Re`f'tVn, -՝_Zv╿4wr<\! (c%)D@Rv?`ݗlg^Mu[5>rfI :I\s|[.o" _!q${%qJ9C.oѳ\-yJFS%b)f g .p6X0:W`&w2)pz<zEzimgy ŝG Ps/~$tcjMBr!-Lzru&0khXmC6?KGv>]E(2be;9 WSlGuˈ̆ԍ8eBQF.eV  pgQ1E6RK>4 '}F4xP\fey /Bםj I \6X-_ɲ']Uwq6$c,HO:zSA3[8%T[wDB0O@Ѥ>Pe=_0[| v03{x V̞C{D;hNFZ@Ca2q}wDY|u.p\?cPg8#4mJh?y< ֱdl7#QQl,l ʭ*H/Z@%D׎$|PC/Ch7mKYo/[z7Lڨi]IMBS @`{S Q}! MrCKZJtN՚S5i QeUmMRfmP5]MMSx6nO%uu5*iٳ<.d3>zV܂Ζtk'%%챝e 6SmU[yL')ӠLM֌1GŒTƹ53146Gz73UڔV7Ԋj&="1"A`jֺsKyp@198Z֙] xD~QkZmza 193:n9W!ZGpLyu9!e+/(G &VL^fP1.V4䑯;)]d"Ɉ$w>_d:{ BoSecZ;!¡A cD0" IG64yoQk)3ڵYd=,BgNdLb A~wĈ@*NycكUu%tdZ.[W/yncsRwv Jr@V]SR1Ӣv@C%%P1(<j_l f,1c"ɖS).~8a粏ƣ3ʏ{?Q.rI#0~VGR,NK&A<8V:dk֪뇫=o'gyXQѕBEVsl8?TϠ4 !SIǒZ<s;]֮t[ؘ Gj5jEfIo%4ii.mM4IɲC)RU:8ڐ'k5GX_fٛ|?\.= {@o'z^D&#Bڮh*$x|W½l#&'h\CB jmj. Ժӻvb.p8^2"7H1QT].-^&( a~L֑LӍ%Fڦ 9[S]"f㴪BwsB#ڥN9Ϥ˫0se>X`[vc~H `;$0efr4Ȝw6%=ZRujU",sGZ)!2U{&_zf# 1wG#dThJfHC6mHWN(' aԻcRIsgژ*<$1M8,W@QBە=jJ-#ɖ9P?W[y_3C(;_IqG3skPL+fl,U h{4Qp>fx\L:Ď=otOtV)J#I#rFĹ}<āhv& ! Z&BF+zGʿdM|`ЪWgƢ=\|o yc.["eJrE\J// 2]vm5ZUw ON-QdbyxQ|$9M(iI'ԛ^(Ox{]j.$ZLGwwcyM\Ym ϤEv*&n-d&z$62hc4r>M_[ @464s 14⴬ \ %!30Z밭iU[E1^(i<6VN(EQͽߤauw#:IFy>VKj{K2[ZuVʣդN9+g! _GȣMB}`MԵ'~s×uUR",&m8%iw/u*>FVjtnj4jFi$5VUn#&QuL>3usu})ɦ;BXr4#"5zZi+<+DMU}ooBUQر]ros=ie#s;!:ԋ>G>CLRsV>|= $ԩiZF gٕXWP &I)ڭ~ARG#\BV(Ɠj1rG|ƒ}\1u1UgHdqgRWްTo됁ٞڐp)ocRȐXCfAeUgjt[BD^XL ULwT~cFY4kj:ED;jPUaPjRbjXFSt ʫodF*հs[\p -t# fl㇠![CIChij V L۝"[o$p0H@әGH_|Rġ0?|FIw6vrDaNCmi:W$}a֍}9Gy`}|9aKJRv.~=R~+g5A٪^mû/>w'}\|7!WZdh|}C|MZ k-ŠVz)}o?͙i@խ EKv1lѫGk^k͗p7|(4UT]s<ߊyRH:T8pnRC$YdAߒzBKe I E ,sgG(yyg"n;Ic}\|ȬŚ:# mlLq*EE]7qyy/#ZviTMm7dd'nMњr&k~xNT :m,8LkkC2B j`dd-ɒGXMAC"W3_bθO*N%G k |ȎI+^>S |p@S[<+4n'kr1k8vq\!#i!-{9sXQ1{s.fME_; 5'dezě2ٯ&^펫XC^N}5{@Q{': A"d?p֥i%ȕTJ́.d:''# >_>RTKh3)llImѻ"¹]%s| XaECk4u:xnRр]EߵKJ39'{+?D[ ooyUkq7 Z%$3}+hFИZǢmp3 5=C&m#ڙ鹼N9mL(|Q<;2 ~ICY{k*J FCܱj]ILUDL^H+Șۨ#t[]+N*+*OT r&W(SՏσJ3G t| M9$ nQ"^6x6m^bT \JP Q's+p>^d:L;M;u$-5vuі Dx-OB;Cs}p|Ez m̄| !*jP"9-oIV*aٹ"Y' v6hEcG{y.sf%A5-4Eh>8mԸm6Mzn3Ro5q%`A.G.ɦT#OJAtunz#* w.ˀm7x<;k/yBr!ƴAћV˒~s` 5`>*3 OBW]pe~=RڨTSΘVl/{'!9WRJ@&efd9~k{c.'؉?.WFgըy[[IhXk*Pqu& l001IsLU*&8msk:x ,`B$?qTvQajGUdCVKL2\FzyoB6 P8 ^d1 ֦%M U’= ,Yr40 2ˁ؂pϙ7Mo?3X!jZ_l MʵVU8̍=HCugbQ6n *|b>+ ƉKpF""ReI[\T ʏ ;Z<*ӺBWWˍV9vB5 ׷Oso~')ivH0Iq-{s~Y\j< anɜ #꼳Ne0 FItnU #|TJEW C%bs[N FSp)şV)ȒN#0Dr1fg'H%Kc׶GoN>=DkFUē: ɶ ЋHbuf$'TdftJĠM逝NS8.b$gڳLP[K1 7XP"2͡sE*i/ V(=O~>BѬ0U@@L9MR٨}k*Iqmʫ-4TjoYIPLj<0H&KI]BB73!Gz.3Wn4O9m6ڍfVl7Nt+NMz9gqӮTu7Q{=oœTb\bS<`{#׳cb)[$x kPd]i5MAU:窓핟=b-dePa|d-`ĶmB4X!:jw-13+f:YP^>qgTWDz%k@k~nAa MeUGP9BvZ"Uvh6ΘͺWM%/B%ɱp iqCr*v%RɞLieZHM_Or, j0w:,2Hp^|n1HɺOsw/e_vI*ې Q̥ k 8'8b8fTG4P%ۭz@:u|NIKXQ$ֳ.<T3jΛ4ϡnVˍ:A.3L`ܢM:V=<<\8/BADž\\@֢a+g|qh'=⩂ E*;oMwo83j1>5K#3+¦eN\ EN,O O~w[804_M=;هAD:k'g s>qˡ^}t:VdL*c EC-ZB˴S,azޝqCWbm\OǗ?/oQՆIuм*rPMC$:eAٰ?[R5̒V{"A5GA9+vx[ƭqt6Xl}f WLE#tپXui@Xѡ/ʜ@"Ӣ]gKx .7Gkt1&+;yV9~\1IUE3 [ \!L8,:l1 Zx:Y\{iJs;$,+呾c$ieMUR5q>F##4m.\Knܭ5>Ypvf0H%Ƙ yAWQZCVR>DI3Y@Y9RTeB豻nWNY']J]$眛"^ x*먲q\yDAqU]Ǖ`-t7߳)-}F5ՈO~+.Ӏ ΫȯWW |ΫYI]~]"@9h~Xh8nr{Ԅ?-_84ͽ&ܘ@R՝,N`-m.;z4"{?+T>\6IgDQ[ER .X;/#n7cQ5';Qg (]$kOƙYz3xc樒P:GƷcB- y"oI;8>t?? AeڑxJv/4 :MFaBp x@=ѫzJJo6dI!x8f9W0 *"SJn0.Ȕ#h)\bpU'OOtn24ED[Bdi^.A&^H`OG\% ~rozts LnIz3"Ejua62325相qr z%uAmEͶ+>+g2 55^lq> 4{ѫ%jZ?/93ex S Q*`{<$&H,9MN$^I;_,=rQe@5Aȶ[1Ĭu 5aZ~Ru S:ڑJ4FΕb_"XЯCRlp(@xdH{Nl Z x:> pBSRv, (΃e~F9#|Ü ,w=}pCQh9IF.1\c9NNSgW|θ3ZbG#a1] 4F9;ȈdoCg;&8VBa+,iT>/,==Q 6]uT}La.űH8? 9r$Vy4"uySgi15qh,{|z% vwK$ce9ɠګ-|/%IߙVTё{͟E,i0eg'!VFހIS:@ )TJW6&-5F0ߒJ@VS܍Y,5]2FUZыd뼈b3MN6dytk3aD ϫ䊸 v-WDGO|,pƇ45k9SkƗ<Ԉa+ ߰YHoCv1Fxe5AtnfI ^j2i$ MޓZժu|hB*"*j՚ P]5Tv6b?pSAuVmȲ]^\ *Km1 ʒ枽 -0*+SIWӺRbH'sU=%F%^3zR-lTvW%=tX[+bΤg %>% J+\YR$;4Rh~j0QdxV8o{]iaORgw'﹏TM '_:VބlD\E¹t|hTPDד׹vfvDREdD+2km`0T]%Fޣ>R 9\2vr /Moz>ƍ>܃As5rBzp%y=}kn%Oc|}bBpD%_>E,-}2( `,iEF(X4B2 9oe< `q?&Fr+gs߸k#^3_ZzzIMS"~p풺G6ӮŕNsx3LD:S*tp@Q%=fpG4Է-;jS/^۴"@mJ :wY;b'mٜ thY +r6Rh#IHaS&H6Wg.uCm a}Ә _7[v__atժ46)WDԦLl@V%O^?gz6'=Ә.!d5(C ^,yWТJBR"ӫ 'M<$ mQ^8>Z0|>{yCI7V^"/e䇣  1 zC[~Qama3K vDD)h^W)麺D*(&x J(x\4yi]oHͬ$^!"k;*O-`tZά`ʔBNԓif<P'/(N'bGU(D*vNۇ'|Nk%#J46btGz-Z3IH q-"ٗyRBErs{sVݙnG[}ޔI{_"ZWٙ8Cᔂ0Eң/gv9.}+F%qS Ÿ YM 7p핟H33#+X1=UhXFS-u&v,'r$B:҉3eK1tZͦב5Ԃ1E=$q )18YbN0$G|Ye\lsz@F~::䤂`YX&$@nPՋ{+S5ddNYᳵޖ-7PԝMp/6vȁWAj`#n&qB8GRT%;nI_CY.Rğj¨zv]WD~IR3%=mӔ]}8v IHFxhcMdjH7B j fUg=#+=±C4]2I<{AZ؂B}C R`>_842[֨*!2M.$_*>VAq1j4TvѷKy|v҂zM ;\yc/']onu N .Mޱw7=pUyiұT/mPۜP,I_ ֑\Q'١0´3J/O󀲷P/1"ԫ\7p|d^,`7︘\ejWri7# m<p~82%SJV795d2<لjݝnM$[]Wo W8A SG F#f&fmɗ8Ӵa:;'܁QfAg JWl٨qb\ >EOviL -P}JtvZ!ȱhs{siik՛ Tf#p$2fPkђKsnkS̕DNJD N]OsȅpGw"E3fã O6 VDf4ld!n2|4TcԀ6eX3zɭ^-0\q'5!K.r>xεwḻK=\މ7gMjp37*8HDi}`Qg"Μ^J}4;퍼*DG?7~e^ߨ,gZx.'AmO.W Fvp'M+:1{uw]y0e}& UtVq62K,n|mF*+T'e! "QLwK#ϔAuuE Ff YwZNF> KO>Ykh11?Nތѿd2[OSLo mNLʗ+ؖ>ÛJ(fl8F$8oKi]00Zԃb9"A%.)DOv]J+`  *%NbSv&O\k UX&K͉f'^W} Mx` S m@N-|ly0Jlɰ ?}4~9Y5 Gg1V7L `|]R5 S*(ZzY=t9paG1R7bА9ǓN2'Z >r,}quNӦ$dE3 ^=:zjo&Y8i1=8 !B h}M}<2vFC*Ух(<(;rk3]Uju}WվOo7-QQKi*- ~;&EQ \a؇J }@4v$#R^N)Dta<)|jƇo%sQLQׅz:V&GQj<{y3e}*Xo 8~TWG/b%M`nelrs'1t9#k`^"GcQ3tVǏϘ**c! LS}F/SRj1d[#H,IM{N1[/4?Wi;NxHFlWnlޠPNyEzUZj&g(? H#6+޿gW< >r@" %RܱnߔdtSRcV4+R$].׎6SǨpO-LWVvCԎVɹ /I7*? N c2R૥ŧ"Hh`j TM5W73G[BlwCj׺zʼn? 3:=8MTO7'ZzS> 0`d*3d֙< {w?2#( ]e{v!s?}%姜Sg{'5NwtJ.*c"ߔW-*F)<W=aP]:X*aHyDMvc,t̩ 1LVfvs\dHtt:(.ڌiG)Mն$[f UwI`?d4Y~^ydμ.@y8wo zk T7%x6.j}sރȏϪC Ϙ5^(aX1ʪ; 9nN3R&"E u5H5l3E !%Ʉ %<ͥ@_iK< & %S5b\Lo !XI֖=ABxb)u?d8g#o?h֋y5/WeD@2Rcxz\PJ8uaoԄ/@3{D*`_F9Y=ڝsV'PSilCHPFhL@aȵ ?AJ,ΚX?t3QOb;+c~p1,Sn<`)׵C 踘^ SK\c0>2rf>Đz$+s> XJqX?I˽MEijA.J 21đ+NJM,s@W; Lo]qm}5i;&dl/Բv`5g]ZvJEQliKcz7*GgP'cٙ_Jl:m喤G pyiz2ٱ Q?&NI=f{gm;ٖ