Loading...
1// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * Copyright (C) 2014 Linaro Ltd.
4 * Author: Ashwin Chaugule <ashwin.chaugule@linaro.org>
5 *
6 * PCC (Platform Communication Channel) is defined in the ACPI 5.0+
7 * specification. It is a mailbox like mechanism to allow clients
8 * such as CPPC (Collaborative Processor Performance Control), RAS
9 * (Reliability, Availability and Serviceability) and MPST (Memory
10 * Node Power State Table) to talk to the platform (e.g. BMC) through
11 * shared memory regions as defined in the PCC table entries. The PCC
12 * specification supports a Doorbell mechanism for the PCC clients
13 * to notify the platform about new data. This Doorbell information
14 * is also specified in each PCC table entry.
15 *
16 * Typical high level flow of operation is:
17 *
18 * PCC Reads:
19 * * Client tries to acquire a channel lock.
20 * * After it is acquired it writes READ cmd in communication region cmd
21 * address.
22 * * Client issues mbox_send_message() which rings the PCC doorbell
23 * for its PCC channel.
24 * * If command completes, then client has control over channel and
25 * it can proceed with its reads.
26 * * Client releases lock.
27 *
28 * PCC Writes:
29 * * Client tries to acquire channel lock.
30 * * Client writes to its communication region after it acquires a
31 * channel lock.
32 * * Client writes WRITE cmd in communication region cmd address.
33 * * Client issues mbox_send_message() which rings the PCC doorbell
34 * for its PCC channel.
35 * * If command completes, then writes have succeeded and it can release
36 * the channel lock.
37 *
38 * There is a Nominal latency defined for each channel which indicates
39 * how long to wait until a command completes. If command is not complete
40 * the client needs to retry or assume failure.
41 *
42 * For more details about PCC, please see the ACPI specification from
43 * http://www.uefi.org/ACPIv5.1 Section 14.
44 *
45 * This file implements PCC as a Mailbox controller and allows for PCC
46 * clients to be implemented as its Mailbox Client Channels.
47 */
48
49#include <linux/acpi.h>
50#include <linux/delay.h>
51#include <linux/io.h>
52#include <linux/init.h>
53#include <linux/interrupt.h>
54#include <linux/list.h>
55#include <linux/log2.h>
56#include <linux/platform_device.h>
57#include <linux/mailbox_controller.h>
58#include <linux/mailbox_client.h>
59#include <linux/io-64-nonatomic-lo-hi.h>
60#include <acpi/pcc.h>
61
62#include "mailbox.h"
63
64#define MBOX_IRQ_NAME "pcc-mbox"
65
66/**
67 * struct pcc_chan_reg - PCC register bundle
68 *
69 * @vaddr: cached virtual address for this register
70 * @gas: pointer to the generic address structure for this register
71 * @preserve_mask: bitmask to preserve when writing to this register
72 * @set_mask: bitmask to set when writing to this register
73 * @status_mask: bitmask to determine and/or update the status for this register
74 */
75struct pcc_chan_reg {
76 void __iomem *vaddr;
77 struct acpi_generic_address *gas;
78 u64 preserve_mask;
79 u64 set_mask;
80 u64 status_mask;
81};
82
83/**
84 * struct pcc_chan_info - PCC channel specific information
85 *
86 * @chan: PCC channel information with Shared Memory Region info
87 * @db: PCC register bundle for the doorbell register
88 * @plat_irq_ack: PCC register bundle for the platform interrupt acknowledge
89 * register
90 * @cmd_complete: PCC register bundle for the command complete check register
91 * @cmd_update: PCC register bundle for the command complete update register
92 * @error: PCC register bundle for the error status register
93 * @plat_irq: platform interrupt
94 * @type: PCC subspace type
95 * @plat_irq_flags: platform interrupt flags
96 * @chan_in_use: this flag is used just to check if the interrupt needs
97 * handling when it is shared. Since only one transfer can occur
98 * at a time and mailbox takes care of locking, this flag can be
99 * accessed without a lock. Note: the type only support the
100 * communication from OSPM to Platform, like type3, use it, and
101 * other types completely ignore it.
102 */
103struct pcc_chan_info {
104 struct pcc_mbox_chan chan;
105 struct pcc_chan_reg db;
106 struct pcc_chan_reg plat_irq_ack;
107 struct pcc_chan_reg cmd_complete;
108 struct pcc_chan_reg cmd_update;
109 struct pcc_chan_reg error;
110 int plat_irq;
111 u8 type;
112 unsigned int plat_irq_flags;
113 bool chan_in_use;
114};
115
116#define to_pcc_chan_info(c) container_of(c, struct pcc_chan_info, chan)
117static struct pcc_chan_info *chan_info;
118static int pcc_chan_count;
119
120static int pcc_send_data(struct mbox_chan *chan, void *data);
121
122/*
123 * PCC can be used with perf critical drivers such as CPPC
124 * So it makes sense to locally cache the virtual address and
125 * use it to read/write to PCC registers such as doorbell register
126 *
127 * The below read_register and write_registers are used to read and
128 * write from perf critical registers such as PCC doorbell register
129 */
130static void read_register(void __iomem *vaddr, u64 *val, unsigned int bit_width)
131{
132 switch (bit_width) {
133 case 8:
134 *val = readb(vaddr);
135 break;
136 case 16:
137 *val = readw(vaddr);
138 break;
139 case 32:
140 *val = readl(vaddr);
141 break;
142 case 64:
143 *val = readq(vaddr);
144 break;
145 }
146}
147
148static void write_register(void __iomem *vaddr, u64 val, unsigned int bit_width)
149{
150 switch (bit_width) {
151 case 8:
152 writeb(val, vaddr);
153 break;
154 case 16:
155 writew(val, vaddr);
156 break;
157 case 32:
158 writel(val, vaddr);
159 break;
160 case 64:
161 writeq(val, vaddr);
162 break;
163 }
164}
165
166static int pcc_chan_reg_read(struct pcc_chan_reg *reg, u64 *val)
167{
168 int ret = 0;
169
170 if (!reg->gas) {
171 *val = 0;
172 return 0;
173 }
174
175 if (reg->vaddr)
176 read_register(reg->vaddr, val, reg->gas->bit_width);
177 else
178 ret = acpi_read(val, reg->gas);
179
180 return ret;
181}
182
183static int pcc_chan_reg_write(struct pcc_chan_reg *reg, u64 val)
184{
185 int ret = 0;
186
187 if (!reg->gas)
188 return 0;
189
190 if (reg->vaddr)
191 write_register(reg->vaddr, val, reg->gas->bit_width);
192 else
193 ret = acpi_write(val, reg->gas);
194
195 return ret;
196}
197
198static int pcc_chan_reg_read_modify_write(struct pcc_chan_reg *reg)
199{
200 int ret = 0;
201 u64 val;
202
203 ret = pcc_chan_reg_read(reg, &val);
204 if (ret)
205 return ret;
206
207 val &= reg->preserve_mask;
208 val |= reg->set_mask;
209
210 return pcc_chan_reg_write(reg, val);
211}
212
213/**
214 * pcc_map_interrupt - Map a PCC subspace GSI to a linux IRQ number
215 * @interrupt: GSI number.
216 * @flags: interrupt flags
217 *
218 * Returns: a valid linux IRQ number on success
219 * 0 or -EINVAL on failure
220 */
221static int pcc_map_interrupt(u32 interrupt, u32 flags)
222{
223 int trigger, polarity;
224
225 if (!interrupt)
226 return 0;
227
228 trigger = (flags & ACPI_PCCT_INTERRUPT_MODE) ? ACPI_EDGE_SENSITIVE
229 : ACPI_LEVEL_SENSITIVE;
230
231 polarity = (flags & ACPI_PCCT_INTERRUPT_POLARITY) ? ACPI_ACTIVE_LOW
232 : ACPI_ACTIVE_HIGH;
233
234 return acpi_register_gsi(NULL, interrupt, trigger, polarity);
235}
236
237static bool pcc_chan_plat_irq_can_be_shared(struct pcc_chan_info *pchan)
238{
239 return (pchan->plat_irq_flags & ACPI_PCCT_INTERRUPT_MODE) ==
240 ACPI_LEVEL_SENSITIVE;
241}
242
243static bool pcc_mbox_cmd_complete_check(struct pcc_chan_info *pchan)
244{
245 u64 val;
246 int ret;
247
248 ret = pcc_chan_reg_read(&pchan->cmd_complete, &val);
249 if (ret)
250 return false;
251
252 if (!pchan->cmd_complete.gas)
253 return true;
254
255 /*
256 * Judge if the channel respond the interrupt based on the value of
257 * command complete.
258 */
259 val &= pchan->cmd_complete.status_mask;
260
261 /*
262 * If this is PCC slave subspace channel, and the command complete
263 * bit 0 indicates that Platform is sending a notification and OSPM
264 * needs to respond this interrupt to process this command.
265 */
266 if (pchan->type == ACPI_PCCT_TYPE_EXT_PCC_SLAVE_SUBSPACE)
267 return !val;
268
269 return !!val;
270}
271
272static void check_and_ack(struct pcc_chan_info *pchan, struct mbox_chan *chan)
273{
274 struct acpi_pcct_ext_pcc_shared_memory pcc_hdr;
275
276 if (pchan->type != ACPI_PCCT_TYPE_EXT_PCC_SLAVE_SUBSPACE)
277 return;
278 /* If the memory region has not been mapped, we cannot
279 * determine if we need to send the message, but we still
280 * need to set the cmd_update flag before returning.
281 */
282 if (pchan->chan.shmem == NULL) {
283 pcc_chan_reg_read_modify_write(&pchan->cmd_update);
284 return;
285 }
286 memcpy_fromio(&pcc_hdr, pchan->chan.shmem,
287 sizeof(struct acpi_pcct_ext_pcc_shared_memory));
288 /*
289 * The PCC slave subspace channel needs to set the command complete bit
290 * after processing message. If the PCC_ACK_FLAG is set, it should also
291 * ring the doorbell.
292 *
293 * The PCC master subspace channel clears chan_in_use to free channel.
294 */
295 if (le32_to_cpup(&pcc_hdr.flags) & PCC_ACK_FLAG_MASK)
296 pcc_send_data(chan, NULL);
297 else
298 pcc_chan_reg_read_modify_write(&pchan->cmd_update);
299}
300
301/**
302 * pcc_mbox_irq - PCC mailbox interrupt handler
303 * @irq: interrupt number
304 * @p: data/cookie passed from the caller to identify the channel
305 *
306 * Returns: IRQ_HANDLED if interrupt is handled or IRQ_NONE if not
307 */
308static irqreturn_t pcc_mbox_irq(int irq, void *p)
309{
310 struct pcc_chan_info *pchan;
311 struct mbox_chan *chan = p;
312 u64 val;
313 int ret;
314
315 pchan = chan->con_priv;
316 if (pchan->type == ACPI_PCCT_TYPE_EXT_PCC_MASTER_SUBSPACE &&
317 !pchan->chan_in_use)
318 return IRQ_NONE;
319
320 if (!pcc_mbox_cmd_complete_check(pchan))
321 return IRQ_NONE;
322
323 ret = pcc_chan_reg_read(&pchan->error, &val);
324 if (ret)
325 return IRQ_NONE;
326 val &= pchan->error.status_mask;
327 if (val) {
328 val &= ~pchan->error.status_mask;
329 pcc_chan_reg_write(&pchan->error, val);
330 return IRQ_NONE;
331 }
332
333 if (pcc_chan_reg_read_modify_write(&pchan->plat_irq_ack))
334 return IRQ_NONE;
335
336 mbox_chan_received_data(chan, NULL);
337
338 check_and_ack(pchan, chan);
339 pchan->chan_in_use = false;
340
341 return IRQ_HANDLED;
342}
343
344/**
345 * pcc_mbox_request_channel - PCC clients call this function to
346 * request a pointer to their PCC subspace, from which they
347 * can get the details of communicating with the remote.
348 * @cl: Pointer to Mailbox client, so we know where to bind the
349 * Channel.
350 * @subspace_id: The PCC Subspace index as parsed in the PCC client
351 * ACPI package. This is used to lookup the array of PCC
352 * subspaces as parsed by the PCC Mailbox controller.
353 *
354 * Return: Pointer to the PCC Mailbox Channel if successful or ERR_PTR.
355 */
356struct pcc_mbox_chan *
357pcc_mbox_request_channel(struct mbox_client *cl, int subspace_id)
358{
359 struct pcc_chan_info *pchan;
360 struct mbox_chan *chan;
361 int rc;
362
363 if (subspace_id < 0 || subspace_id >= pcc_chan_count)
364 return ERR_PTR(-ENOENT);
365
366 pchan = chan_info + subspace_id;
367 chan = pchan->chan.mchan;
368 if (IS_ERR(chan) || chan->cl) {
369 pr_err("Channel not found for idx: %d\n", subspace_id);
370 return ERR_PTR(-EBUSY);
371 }
372
373 rc = mbox_bind_client(chan, cl);
374 if (rc)
375 return ERR_PTR(rc);
376
377 return &pchan->chan;
378}
379EXPORT_SYMBOL_GPL(pcc_mbox_request_channel);
380
381/**
382 * pcc_mbox_free_channel - Clients call this to free their Channel.
383 *
384 * @pchan: Pointer to the PCC mailbox channel as returned by
385 * pcc_mbox_request_channel()
386 */
387void pcc_mbox_free_channel(struct pcc_mbox_chan *pchan)
388{
389 struct mbox_chan *chan = pchan->mchan;
390 struct pcc_chan_info *pchan_info;
391 struct pcc_mbox_chan *pcc_mbox_chan;
392
393 if (!chan || !chan->cl)
394 return;
395 pchan_info = chan->con_priv;
396 pcc_mbox_chan = &pchan_info->chan;
397 if (pcc_mbox_chan->shmem) {
398 iounmap(pcc_mbox_chan->shmem);
399 pcc_mbox_chan->shmem = NULL;
400 }
401
402 mbox_free_channel(chan);
403}
404EXPORT_SYMBOL_GPL(pcc_mbox_free_channel);
405
406int pcc_mbox_ioremap(struct mbox_chan *chan)
407{
408 struct pcc_chan_info *pchan_info;
409 struct pcc_mbox_chan *pcc_mbox_chan;
410
411 if (!chan || !chan->cl)
412 return -1;
413 pchan_info = chan->con_priv;
414 pcc_mbox_chan = &pchan_info->chan;
415 pcc_mbox_chan->shmem = ioremap(pcc_mbox_chan->shmem_base_addr,
416 pcc_mbox_chan->shmem_size);
417 return 0;
418}
419EXPORT_SYMBOL_GPL(pcc_mbox_ioremap);
420
421/**
422 * pcc_send_data - Called from Mailbox Controller code. Used
423 * here only to ring the channel doorbell. The PCC client
424 * specific read/write is done in the client driver in
425 * order to maintain atomicity over PCC channel once
426 * OS has control over it. See above for flow of operations.
427 * @chan: Pointer to Mailbox channel over which to send data.
428 * @data: Client specific data written over channel. Used here
429 * only for debug after PCC transaction completes.
430 *
431 * Return: Err if something failed else 0 for success.
432 */
433static int pcc_send_data(struct mbox_chan *chan, void *data)
434{
435 int ret;
436 struct pcc_chan_info *pchan = chan->con_priv;
437
438 ret = pcc_chan_reg_read_modify_write(&pchan->cmd_update);
439 if (ret)
440 return ret;
441
442 ret = pcc_chan_reg_read_modify_write(&pchan->db);
443 if (!ret && pchan->plat_irq > 0)
444 pchan->chan_in_use = true;
445
446 return ret;
447}
448
449/**
450 * pcc_startup - Called from Mailbox Controller code. Used here
451 * to request the interrupt.
452 * @chan: Pointer to Mailbox channel to startup.
453 *
454 * Return: Err if something failed else 0 for success.
455 */
456static int pcc_startup(struct mbox_chan *chan)
457{
458 struct pcc_chan_info *pchan = chan->con_priv;
459 unsigned long irqflags;
460 int rc;
461
462 if (pchan->plat_irq > 0) {
463 irqflags = pcc_chan_plat_irq_can_be_shared(pchan) ?
464 IRQF_SHARED | IRQF_ONESHOT : 0;
465 rc = devm_request_irq(chan->mbox->dev, pchan->plat_irq, pcc_mbox_irq,
466 irqflags, MBOX_IRQ_NAME, chan);
467 if (unlikely(rc)) {
468 dev_err(chan->mbox->dev, "failed to register PCC interrupt %d\n",
469 pchan->plat_irq);
470 return rc;
471 }
472 }
473
474 return 0;
475}
476
477/**
478 * pcc_shutdown - Called from Mailbox Controller code. Used here
479 * to free the interrupt.
480 * @chan: Pointer to Mailbox channel to shutdown.
481 */
482static void pcc_shutdown(struct mbox_chan *chan)
483{
484 struct pcc_chan_info *pchan = chan->con_priv;
485
486 if (pchan->plat_irq > 0)
487 devm_free_irq(chan->mbox->dev, pchan->plat_irq, chan);
488}
489
490static const struct mbox_chan_ops pcc_chan_ops = {
491 .send_data = pcc_send_data,
492 .startup = pcc_startup,
493 .shutdown = pcc_shutdown,
494};
495
496/**
497 * parse_pcc_subspace - Count PCC subspaces defined
498 * @header: Pointer to the ACPI subtable header under the PCCT.
499 * @end: End of subtable entry.
500 *
501 * Return: If we find a PCC subspace entry of a valid type, return 0.
502 * Otherwise, return -EINVAL.
503 *
504 * This gets called for each entry in the PCC table.
505 */
506static int parse_pcc_subspace(union acpi_subtable_headers *header,
507 const unsigned long end)
508{
509 struct acpi_pcct_subspace *ss = (struct acpi_pcct_subspace *) header;
510
511 if (ss->header.type < ACPI_PCCT_TYPE_RESERVED)
512 return 0;
513
514 return -EINVAL;
515}
516
517static int
518pcc_chan_reg_init(struct pcc_chan_reg *reg, struct acpi_generic_address *gas,
519 u64 preserve_mask, u64 set_mask, u64 status_mask, char *name)
520{
521 if (gas->space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY) {
522 if (!(gas->bit_width >= 8 && gas->bit_width <= 64 &&
523 is_power_of_2(gas->bit_width))) {
524 pr_err("Error: Cannot access register of %u bit width",
525 gas->bit_width);
526 return -EFAULT;
527 }
528
529 reg->vaddr = acpi_os_ioremap(gas->address, gas->bit_width / 8);
530 if (!reg->vaddr) {
531 pr_err("Failed to ioremap PCC %s register\n", name);
532 return -ENOMEM;
533 }
534 }
535 reg->gas = gas;
536 reg->preserve_mask = preserve_mask;
537 reg->set_mask = set_mask;
538 reg->status_mask = status_mask;
539 return 0;
540}
541
542/**
543 * pcc_parse_subspace_irq - Parse the PCC IRQ and PCC ACK register
544 *
545 * @pchan: Pointer to the PCC channel info structure.
546 * @pcct_entry: Pointer to the ACPI subtable header.
547 *
548 * Return: 0 for Success, else errno.
549 *
550 * There should be one entry per PCC channel. This gets called for each
551 * entry in the PCC table. This uses PCCY Type1 structure for all applicable
552 * types(Type 1-4) to fetch irq
553 */
554static int pcc_parse_subspace_irq(struct pcc_chan_info *pchan,
555 struct acpi_subtable_header *pcct_entry)
556{
557 int ret = 0;
558 struct acpi_pcct_hw_reduced *pcct_ss;
559
560 if (pcct_entry->type < ACPI_PCCT_TYPE_HW_REDUCED_SUBSPACE ||
561 pcct_entry->type > ACPI_PCCT_TYPE_EXT_PCC_SLAVE_SUBSPACE)
562 return 0;
563
564 pcct_ss = (struct acpi_pcct_hw_reduced *)pcct_entry;
565 pchan->plat_irq = pcc_map_interrupt(pcct_ss->platform_interrupt,
566 (u32)pcct_ss->flags);
567 if (pchan->plat_irq <= 0) {
568 pr_err("PCC GSI %d not registered\n",
569 pcct_ss->platform_interrupt);
570 return -EINVAL;
571 }
572 pchan->plat_irq_flags = pcct_ss->flags;
573
574 if (pcct_ss->header.type == ACPI_PCCT_TYPE_HW_REDUCED_SUBSPACE_TYPE2) {
575 struct acpi_pcct_hw_reduced_type2 *pcct2_ss = (void *)pcct_ss;
576
577 ret = pcc_chan_reg_init(&pchan->plat_irq_ack,
578 &pcct2_ss->platform_ack_register,
579 pcct2_ss->ack_preserve_mask,
580 pcct2_ss->ack_write_mask, 0,
581 "PLAT IRQ ACK");
582
583 } else if (pcct_ss->header.type == ACPI_PCCT_TYPE_EXT_PCC_MASTER_SUBSPACE ||
584 pcct_ss->header.type == ACPI_PCCT_TYPE_EXT_PCC_SLAVE_SUBSPACE) {
585 struct acpi_pcct_ext_pcc_master *pcct_ext = (void *)pcct_ss;
586
587 ret = pcc_chan_reg_init(&pchan->plat_irq_ack,
588 &pcct_ext->platform_ack_register,
589 pcct_ext->ack_preserve_mask,
590 pcct_ext->ack_set_mask, 0,
591 "PLAT IRQ ACK");
592 }
593
594 if (pcc_chan_plat_irq_can_be_shared(pchan) &&
595 !pchan->plat_irq_ack.gas) {
596 pr_err("PCC subspace has level IRQ with no ACK register\n");
597 return -EINVAL;
598 }
599
600 return ret;
601}
602
603/**
604 * pcc_parse_subspace_db_reg - Parse the PCC doorbell register
605 *
606 * @pchan: Pointer to the PCC channel info structure.
607 * @pcct_entry: Pointer to the ACPI subtable header.
608 *
609 * Return: 0 for Success, else errno.
610 */
611static int pcc_parse_subspace_db_reg(struct pcc_chan_info *pchan,
612 struct acpi_subtable_header *pcct_entry)
613{
614 int ret = 0;
615
616 if (pcct_entry->type <= ACPI_PCCT_TYPE_HW_REDUCED_SUBSPACE_TYPE2) {
617 struct acpi_pcct_subspace *pcct_ss;
618
619 pcct_ss = (struct acpi_pcct_subspace *)pcct_entry;
620
621 ret = pcc_chan_reg_init(&pchan->db,
622 &pcct_ss->doorbell_register,
623 pcct_ss->preserve_mask,
624 pcct_ss->write_mask, 0, "Doorbell");
625
626 } else {
627 struct acpi_pcct_ext_pcc_master *pcct_ext;
628
629 pcct_ext = (struct acpi_pcct_ext_pcc_master *)pcct_entry;
630
631 ret = pcc_chan_reg_init(&pchan->db,
632 &pcct_ext->doorbell_register,
633 pcct_ext->preserve_mask,
634 pcct_ext->write_mask, 0, "Doorbell");
635 if (ret)
636 return ret;
637
638 ret = pcc_chan_reg_init(&pchan->cmd_complete,
639 &pcct_ext->cmd_complete_register,
640 0, 0, pcct_ext->cmd_complete_mask,
641 "Command Complete Check");
642 if (ret)
643 return ret;
644
645 ret = pcc_chan_reg_init(&pchan->cmd_update,
646 &pcct_ext->cmd_update_register,
647 pcct_ext->cmd_update_preserve_mask,
648 pcct_ext->cmd_update_set_mask, 0,
649 "Command Complete Update");
650 if (ret)
651 return ret;
652
653 ret = pcc_chan_reg_init(&pchan->error,
654 &pcct_ext->error_status_register,
655 0, 0, pcct_ext->error_status_mask,
656 "Error Status");
657 }
658 return ret;
659}
660
661/**
662 * pcc_parse_subspace_shmem - Parse the PCC Shared Memory Region information
663 *
664 * @pchan: Pointer to the PCC channel info structure.
665 * @pcct_entry: Pointer to the ACPI subtable header.
666 *
667 */
668static void pcc_parse_subspace_shmem(struct pcc_chan_info *pchan,
669 struct acpi_subtable_header *pcct_entry)
670{
671 if (pcct_entry->type <= ACPI_PCCT_TYPE_HW_REDUCED_SUBSPACE_TYPE2) {
672 struct acpi_pcct_subspace *pcct_ss =
673 (struct acpi_pcct_subspace *)pcct_entry;
674
675 pchan->chan.shmem_base_addr = pcct_ss->base_address;
676 pchan->chan.shmem_size = pcct_ss->length;
677 pchan->chan.latency = pcct_ss->latency;
678 pchan->chan.max_access_rate = pcct_ss->max_access_rate;
679 pchan->chan.min_turnaround_time = pcct_ss->min_turnaround_time;
680 } else {
681 struct acpi_pcct_ext_pcc_master *pcct_ext =
682 (struct acpi_pcct_ext_pcc_master *)pcct_entry;
683
684 pchan->chan.shmem_base_addr = pcct_ext->base_address;
685 pchan->chan.shmem_size = pcct_ext->length;
686 pchan->chan.latency = pcct_ext->latency;
687 pchan->chan.max_access_rate = pcct_ext->max_access_rate;
688 pchan->chan.min_turnaround_time = pcct_ext->min_turnaround_time;
689 }
690}
691
692/**
693 * acpi_pcc_probe - Parse the ACPI tree for the PCCT.
694 *
695 * Return: 0 for Success, else errno.
696 */
697static int __init acpi_pcc_probe(void)
698{
699 int count, i, rc = 0;
700 acpi_status status;
701 struct acpi_table_header *pcct_tbl;
702 struct acpi_subtable_proc proc[ACPI_PCCT_TYPE_RESERVED];
703
704 status = acpi_get_table(ACPI_SIG_PCCT, 0, &pcct_tbl);
705 if (ACPI_FAILURE(status) || !pcct_tbl)
706 return -ENODEV;
707
708 /* Set up the subtable handlers */
709 for (i = ACPI_PCCT_TYPE_GENERIC_SUBSPACE;
710 i < ACPI_PCCT_TYPE_RESERVED; i++) {
711 proc[i].id = i;
712 proc[i].count = 0;
713 proc[i].handler = parse_pcc_subspace;
714 }
715
716 count = acpi_table_parse_entries_array(ACPI_SIG_PCCT,
717 sizeof(struct acpi_table_pcct), proc,
718 ACPI_PCCT_TYPE_RESERVED, MAX_PCC_SUBSPACES);
719 if (count <= 0 || count > MAX_PCC_SUBSPACES) {
720 if (count < 0)
721 pr_warn("Error parsing PCC subspaces from PCCT\n");
722 else
723 pr_warn("Invalid PCCT: %d PCC subspaces\n", count);
724
725 rc = -EINVAL;
726 } else {
727 pcc_chan_count = count;
728 }
729
730 acpi_put_table(pcct_tbl);
731
732 return rc;
733}
734
735/**
736 * pcc_mbox_probe - Called when we find a match for the
737 * PCCT platform device. This is purely used to represent
738 * the PCCT as a virtual device for registering with the
739 * generic Mailbox framework.
740 *
741 * @pdev: Pointer to platform device returned when a match
742 * is found.
743 *
744 * Return: 0 for Success, else errno.
745 */
746static int pcc_mbox_probe(struct platform_device *pdev)
747{
748 struct device *dev = &pdev->dev;
749 struct mbox_controller *pcc_mbox_ctrl;
750 struct mbox_chan *pcc_mbox_channels;
751 struct acpi_table_header *pcct_tbl;
752 struct acpi_subtable_header *pcct_entry;
753 struct acpi_table_pcct *acpi_pcct_tbl;
754 acpi_status status = AE_OK;
755 int i, rc, count = pcc_chan_count;
756
757 /* Search for PCCT */
758 status = acpi_get_table(ACPI_SIG_PCCT, 0, &pcct_tbl);
759
760 if (ACPI_FAILURE(status) || !pcct_tbl)
761 return -ENODEV;
762
763 pcc_mbox_channels = devm_kcalloc(dev, count, sizeof(*pcc_mbox_channels),
764 GFP_KERNEL);
765 if (!pcc_mbox_channels) {
766 rc = -ENOMEM;
767 goto err;
768 }
769
770 chan_info = devm_kcalloc(dev, count, sizeof(*chan_info), GFP_KERNEL);
771 if (!chan_info) {
772 rc = -ENOMEM;
773 goto err;
774 }
775
776 pcc_mbox_ctrl = devm_kzalloc(dev, sizeof(*pcc_mbox_ctrl), GFP_KERNEL);
777 if (!pcc_mbox_ctrl) {
778 rc = -ENOMEM;
779 goto err;
780 }
781
782 /* Point to the first PCC subspace entry */
783 pcct_entry = (struct acpi_subtable_header *) (
784 (unsigned long) pcct_tbl + sizeof(struct acpi_table_pcct));
785
786 acpi_pcct_tbl = (struct acpi_table_pcct *) pcct_tbl;
787 if (acpi_pcct_tbl->flags & ACPI_PCCT_DOORBELL)
788 pcc_mbox_ctrl->txdone_irq = true;
789
790 for (i = 0; i < count; i++) {
791 struct pcc_chan_info *pchan = chan_info + i;
792
793 pcc_mbox_channels[i].con_priv = pchan;
794 pchan->chan.mchan = &pcc_mbox_channels[i];
795
796 if (pcct_entry->type == ACPI_PCCT_TYPE_EXT_PCC_SLAVE_SUBSPACE &&
797 !pcc_mbox_ctrl->txdone_irq) {
798 pr_err("Platform Interrupt flag must be set to 1");
799 rc = -EINVAL;
800 goto err;
801 }
802
803 if (pcc_mbox_ctrl->txdone_irq) {
804 rc = pcc_parse_subspace_irq(pchan, pcct_entry);
805 if (rc < 0)
806 goto err;
807 }
808 rc = pcc_parse_subspace_db_reg(pchan, pcct_entry);
809 if (rc < 0)
810 goto err;
811
812 pcc_parse_subspace_shmem(pchan, pcct_entry);
813
814 pchan->type = pcct_entry->type;
815 pcct_entry = (struct acpi_subtable_header *)
816 ((unsigned long) pcct_entry + pcct_entry->length);
817 }
818
819 pcc_mbox_ctrl->num_chans = count;
820
821 pr_info("Detected %d PCC Subspaces\n", pcc_mbox_ctrl->num_chans);
822
823 pcc_mbox_ctrl->chans = pcc_mbox_channels;
824 pcc_mbox_ctrl->ops = &pcc_chan_ops;
825 pcc_mbox_ctrl->dev = dev;
826
827 pr_info("Registering PCC driver as Mailbox controller\n");
828 rc = mbox_controller_register(pcc_mbox_ctrl);
829 if (rc)
830 pr_err("Err registering PCC as Mailbox controller: %d\n", rc);
831 else
832 return 0;
833err:
834 acpi_put_table(pcct_tbl);
835 return rc;
836}
837
838static struct platform_driver pcc_mbox_driver = {
839 .probe = pcc_mbox_probe,
840 .driver = {
841 .name = "PCCT",
842 },
843};
844
845static int __init pcc_init(void)
846{
847 int ret;
848 struct platform_device *pcc_pdev;
849
850 if (acpi_disabled)
851 return -ENODEV;
852
853 /* Check if PCC support is available. */
854 ret = acpi_pcc_probe();
855
856 if (ret) {
857 pr_debug("ACPI PCC probe failed.\n");
858 return -ENODEV;
859 }
860
861 pcc_pdev = platform_create_bundle(&pcc_mbox_driver,
862 pcc_mbox_probe, NULL, 0, NULL, 0);
863
864 if (IS_ERR(pcc_pdev)) {
865 pr_debug("Err creating PCC platform bundle\n");
866 pcc_chan_count = 0;
867 return PTR_ERR(pcc_pdev);
868 }
869
870 return 0;
871}
872
873/*
874 * Make PCC init postcore so that users of this mailbox
875 * such as the ACPI Processor driver have it available
876 * at their init.
877 */
878postcore_initcall(pcc_init);
1/*
2 * Copyright (C) 2014 Linaro Ltd.
3 * Author: Ashwin Chaugule <ashwin.chaugule@linaro.org>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * PCC (Platform Communication Channel) is defined in the ACPI 5.0+
16 * specification. It is a mailbox like mechanism to allow clients
17 * such as CPPC (Collaborative Processor Performance Control), RAS
18 * (Reliability, Availability and Serviceability) and MPST (Memory
19 * Node Power State Table) to talk to the platform (e.g. BMC) through
20 * shared memory regions as defined in the PCC table entries. The PCC
21 * specification supports a Doorbell mechanism for the PCC clients
22 * to notify the platform about new data. This Doorbell information
23 * is also specified in each PCC table entry.
24 *
25 * Typical high level flow of operation is:
26 *
27 * PCC Reads:
28 * * Client tries to acquire a channel lock.
29 * * After it is acquired it writes READ cmd in communication region cmd
30 * address.
31 * * Client issues mbox_send_message() which rings the PCC doorbell
32 * for its PCC channel.
33 * * If command completes, then client has control over channel and
34 * it can proceed with its reads.
35 * * Client releases lock.
36 *
37 * PCC Writes:
38 * * Client tries to acquire channel lock.
39 * * Client writes to its communication region after it acquires a
40 * channel lock.
41 * * Client writes WRITE cmd in communication region cmd address.
42 * * Client issues mbox_send_message() which rings the PCC doorbell
43 * for its PCC channel.
44 * * If command completes, then writes have succeded and it can release
45 * the channel lock.
46 *
47 * There is a Nominal latency defined for each channel which indicates
48 * how long to wait until a command completes. If command is not complete
49 * the client needs to retry or assume failure.
50 *
51 * For more details about PCC, please see the ACPI specification from
52 * http://www.uefi.org/ACPIv5.1 Section 14.
53 *
54 * This file implements PCC as a Mailbox controller and allows for PCC
55 * clients to be implemented as its Mailbox Client Channels.
56 */
57
58#include <linux/acpi.h>
59#include <linux/delay.h>
60#include <linux/io.h>
61#include <linux/init.h>
62#include <linux/interrupt.h>
63#include <linux/list.h>
64#include <linux/platform_device.h>
65#include <linux/mailbox_controller.h>
66#include <linux/mailbox_client.h>
67#include <linux/io-64-nonatomic-lo-hi.h>
68#include <acpi/pcc.h>
69
70#include "mailbox.h"
71
72#define MAX_PCC_SUBSPACES 256
73#define MBOX_IRQ_NAME "pcc-mbox"
74
75static struct mbox_chan *pcc_mbox_channels;
76
77/* Array of cached virtual address for doorbell registers */
78static void __iomem **pcc_doorbell_vaddr;
79/* Array of cached virtual address for doorbell ack registers */
80static void __iomem **pcc_doorbell_ack_vaddr;
81/* Array of doorbell interrupts */
82static int *pcc_doorbell_irq;
83
84static struct mbox_controller pcc_mbox_ctrl = {};
85/**
86 * get_pcc_channel - Given a PCC subspace idx, get
87 * the respective mbox_channel.
88 * @id: PCC subspace index.
89 *
90 * Return: ERR_PTR(errno) if error, else pointer
91 * to mbox channel.
92 */
93static struct mbox_chan *get_pcc_channel(int id)
94{
95 if (id < 0 || id > pcc_mbox_ctrl.num_chans)
96 return ERR_PTR(-ENOENT);
97
98 return &pcc_mbox_channels[id];
99}
100
101/*
102 * PCC can be used with perf critical drivers such as CPPC
103 * So it makes sense to locally cache the virtual address and
104 * use it to read/write to PCC registers such as doorbell register
105 *
106 * The below read_register and write_registers are used to read and
107 * write from perf critical registers such as PCC doorbell register
108 */
109static int read_register(void __iomem *vaddr, u64 *val, unsigned int bit_width)
110{
111 int ret_val = 0;
112
113 switch (bit_width) {
114 case 8:
115 *val = readb(vaddr);
116 break;
117 case 16:
118 *val = readw(vaddr);
119 break;
120 case 32:
121 *val = readl(vaddr);
122 break;
123 case 64:
124 *val = readq(vaddr);
125 break;
126 default:
127 pr_debug("Error: Cannot read register of %u bit width",
128 bit_width);
129 ret_val = -EFAULT;
130 break;
131 }
132 return ret_val;
133}
134
135static int write_register(void __iomem *vaddr, u64 val, unsigned int bit_width)
136{
137 int ret_val = 0;
138
139 switch (bit_width) {
140 case 8:
141 writeb(val, vaddr);
142 break;
143 case 16:
144 writew(val, vaddr);
145 break;
146 case 32:
147 writel(val, vaddr);
148 break;
149 case 64:
150 writeq(val, vaddr);
151 break;
152 default:
153 pr_debug("Error: Cannot write register of %u bit width",
154 bit_width);
155 ret_val = -EFAULT;
156 break;
157 }
158 return ret_val;
159}
160
161/**
162 * pcc_map_interrupt - Map a PCC subspace GSI to a linux IRQ number
163 * @interrupt: GSI number.
164 * @flags: interrupt flags
165 *
166 * Returns: a valid linux IRQ number on success
167 * 0 or -EINVAL on failure
168 */
169static int pcc_map_interrupt(u32 interrupt, u32 flags)
170{
171 int trigger, polarity;
172
173 if (!interrupt)
174 return 0;
175
176 trigger = (flags & ACPI_PCCT_INTERRUPT_MODE) ? ACPI_EDGE_SENSITIVE
177 : ACPI_LEVEL_SENSITIVE;
178
179 polarity = (flags & ACPI_PCCT_INTERRUPT_POLARITY) ? ACPI_ACTIVE_LOW
180 : ACPI_ACTIVE_HIGH;
181
182 return acpi_register_gsi(NULL, interrupt, trigger, polarity);
183}
184
185/**
186 * pcc_mbox_irq - PCC mailbox interrupt handler
187 */
188static irqreturn_t pcc_mbox_irq(int irq, void *p)
189{
190 struct acpi_generic_address *doorbell_ack;
191 struct acpi_pcct_hw_reduced *pcct_ss;
192 struct mbox_chan *chan = p;
193 u64 doorbell_ack_preserve;
194 u64 doorbell_ack_write;
195 u64 doorbell_ack_val;
196 int ret;
197
198 pcct_ss = chan->con_priv;
199
200 mbox_chan_received_data(chan, NULL);
201
202 if (pcct_ss->header.type == ACPI_PCCT_TYPE_HW_REDUCED_SUBSPACE_TYPE2) {
203 struct acpi_pcct_hw_reduced_type2 *pcct2_ss = chan->con_priv;
204 u32 id = chan - pcc_mbox_channels;
205
206 doorbell_ack = &pcct2_ss->doorbell_ack_register;
207 doorbell_ack_preserve = pcct2_ss->ack_preserve_mask;
208 doorbell_ack_write = pcct2_ss->ack_write_mask;
209
210 ret = read_register(pcc_doorbell_ack_vaddr[id],
211 &doorbell_ack_val,
212 doorbell_ack->bit_width);
213 if (ret)
214 return IRQ_NONE;
215
216 ret = write_register(pcc_doorbell_ack_vaddr[id],
217 (doorbell_ack_val & doorbell_ack_preserve)
218 | doorbell_ack_write,
219 doorbell_ack->bit_width);
220 if (ret)
221 return IRQ_NONE;
222 }
223
224 return IRQ_HANDLED;
225}
226
227/**
228 * pcc_mbox_request_channel - PCC clients call this function to
229 * request a pointer to their PCC subspace, from which they
230 * can get the details of communicating with the remote.
231 * @cl: Pointer to Mailbox client, so we know where to bind the
232 * Channel.
233 * @subspace_id: The PCC Subspace index as parsed in the PCC client
234 * ACPI package. This is used to lookup the array of PCC
235 * subspaces as parsed by the PCC Mailbox controller.
236 *
237 * Return: Pointer to the Mailbox Channel if successful or
238 * ERR_PTR.
239 */
240struct mbox_chan *pcc_mbox_request_channel(struct mbox_client *cl,
241 int subspace_id)
242{
243 struct device *dev = pcc_mbox_ctrl.dev;
244 struct mbox_chan *chan;
245 unsigned long flags;
246
247 /*
248 * Each PCC Subspace is a Mailbox Channel.
249 * The PCC Clients get their PCC Subspace ID
250 * from their own tables and pass it here.
251 * This returns a pointer to the PCC subspace
252 * for the Client to operate on.
253 */
254 chan = get_pcc_channel(subspace_id);
255
256 if (IS_ERR(chan) || chan->cl) {
257 dev_err(dev, "Channel not found for idx: %d\n", subspace_id);
258 return ERR_PTR(-EBUSY);
259 }
260
261 spin_lock_irqsave(&chan->lock, flags);
262 chan->msg_free = 0;
263 chan->msg_count = 0;
264 chan->active_req = NULL;
265 chan->cl = cl;
266 init_completion(&chan->tx_complete);
267
268 if (chan->txdone_method == TXDONE_BY_POLL && cl->knows_txdone)
269 chan->txdone_method |= TXDONE_BY_ACK;
270
271 spin_unlock_irqrestore(&chan->lock, flags);
272
273 if (pcc_doorbell_irq[subspace_id] > 0) {
274 int rc;
275
276 rc = devm_request_irq(dev, pcc_doorbell_irq[subspace_id],
277 pcc_mbox_irq, 0, MBOX_IRQ_NAME, chan);
278 if (unlikely(rc)) {
279 dev_err(dev, "failed to register PCC interrupt %d\n",
280 pcc_doorbell_irq[subspace_id]);
281 pcc_mbox_free_channel(chan);
282 chan = ERR_PTR(rc);
283 }
284 }
285
286 return chan;
287}
288EXPORT_SYMBOL_GPL(pcc_mbox_request_channel);
289
290/**
291 * pcc_mbox_free_channel - Clients call this to free their Channel.
292 *
293 * @chan: Pointer to the mailbox channel as returned by
294 * pcc_mbox_request_channel()
295 */
296void pcc_mbox_free_channel(struct mbox_chan *chan)
297{
298 u32 id = chan - pcc_mbox_channels;
299 unsigned long flags;
300
301 if (!chan || !chan->cl)
302 return;
303
304 if (id >= pcc_mbox_ctrl.num_chans) {
305 pr_debug("pcc_mbox_free_channel: Invalid mbox_chan passed\n");
306 return;
307 }
308
309 if (pcc_doorbell_irq[id] > 0)
310 devm_free_irq(chan->mbox->dev, pcc_doorbell_irq[id], chan);
311
312 spin_lock_irqsave(&chan->lock, flags);
313 chan->cl = NULL;
314 chan->active_req = NULL;
315 if (chan->txdone_method == (TXDONE_BY_POLL | TXDONE_BY_ACK))
316 chan->txdone_method = TXDONE_BY_POLL;
317
318 spin_unlock_irqrestore(&chan->lock, flags);
319}
320EXPORT_SYMBOL_GPL(pcc_mbox_free_channel);
321
322/**
323 * pcc_send_data - Called from Mailbox Controller code. Used
324 * here only to ring the channel doorbell. The PCC client
325 * specific read/write is done in the client driver in
326 * order to maintain atomicity over PCC channel once
327 * OS has control over it. See above for flow of operations.
328 * @chan: Pointer to Mailbox channel over which to send data.
329 * @data: Client specific data written over channel. Used here
330 * only for debug after PCC transaction completes.
331 *
332 * Return: Err if something failed else 0 for success.
333 */
334static int pcc_send_data(struct mbox_chan *chan, void *data)
335{
336 struct acpi_pcct_hw_reduced *pcct_ss = chan->con_priv;
337 struct acpi_generic_address *doorbell;
338 u64 doorbell_preserve;
339 u64 doorbell_val;
340 u64 doorbell_write;
341 u32 id = chan - pcc_mbox_channels;
342 int ret = 0;
343
344 if (id >= pcc_mbox_ctrl.num_chans) {
345 pr_debug("pcc_send_data: Invalid mbox_chan passed\n");
346 return -ENOENT;
347 }
348
349 doorbell = &pcct_ss->doorbell_register;
350 doorbell_preserve = pcct_ss->preserve_mask;
351 doorbell_write = pcct_ss->write_mask;
352
353 /* Sync notification from OS to Platform. */
354 if (pcc_doorbell_vaddr[id]) {
355 ret = read_register(pcc_doorbell_vaddr[id], &doorbell_val,
356 doorbell->bit_width);
357 if (ret)
358 return ret;
359 ret = write_register(pcc_doorbell_vaddr[id],
360 (doorbell_val & doorbell_preserve) | doorbell_write,
361 doorbell->bit_width);
362 } else {
363 ret = acpi_read(&doorbell_val, doorbell);
364 if (ret)
365 return ret;
366 ret = acpi_write((doorbell_val & doorbell_preserve) | doorbell_write,
367 doorbell);
368 }
369 return ret;
370}
371
372static const struct mbox_chan_ops pcc_chan_ops = {
373 .send_data = pcc_send_data,
374};
375
376/**
377 * parse_pcc_subspace - Parse the PCC table and verify PCC subspace
378 * entries. There should be one entry per PCC client.
379 * @header: Pointer to the ACPI subtable header under the PCCT.
380 * @end: End of subtable entry.
381 *
382 * Return: 0 for Success, else errno.
383 *
384 * This gets called for each entry in the PCC table.
385 */
386static int parse_pcc_subspace(struct acpi_subtable_header *header,
387 const unsigned long end)
388{
389 struct acpi_pcct_hw_reduced *pcct_ss;
390
391 if (pcc_mbox_ctrl.num_chans <= MAX_PCC_SUBSPACES) {
392 pcct_ss = (struct acpi_pcct_hw_reduced *) header;
393
394 if ((pcct_ss->header.type !=
395 ACPI_PCCT_TYPE_HW_REDUCED_SUBSPACE)
396 && (pcct_ss->header.type !=
397 ACPI_PCCT_TYPE_HW_REDUCED_SUBSPACE_TYPE2)) {
398 pr_err("Incorrect PCC Subspace type detected\n");
399 return -EINVAL;
400 }
401 }
402
403 return 0;
404}
405
406/**
407 * pcc_parse_subspace_irq - Parse the PCC IRQ and PCC ACK register
408 * There should be one entry per PCC client.
409 * @id: PCC subspace index.
410 * @pcct_ss: Pointer to the ACPI subtable header under the PCCT.
411 *
412 * Return: 0 for Success, else errno.
413 *
414 * This gets called for each entry in the PCC table.
415 */
416static int pcc_parse_subspace_irq(int id,
417 struct acpi_pcct_hw_reduced *pcct_ss)
418{
419 pcc_doorbell_irq[id] = pcc_map_interrupt(pcct_ss->doorbell_interrupt,
420 (u32)pcct_ss->flags);
421 if (pcc_doorbell_irq[id] <= 0) {
422 pr_err("PCC GSI %d not registered\n",
423 pcct_ss->doorbell_interrupt);
424 return -EINVAL;
425 }
426
427 if (pcct_ss->header.type
428 == ACPI_PCCT_TYPE_HW_REDUCED_SUBSPACE_TYPE2) {
429 struct acpi_pcct_hw_reduced_type2 *pcct2_ss = (void *)pcct_ss;
430
431 pcc_doorbell_ack_vaddr[id] = acpi_os_ioremap(
432 pcct2_ss->doorbell_ack_register.address,
433 pcct2_ss->doorbell_ack_register.bit_width / 8);
434 if (!pcc_doorbell_ack_vaddr[id]) {
435 pr_err("Failed to ioremap PCC ACK register\n");
436 return -ENOMEM;
437 }
438 }
439
440 return 0;
441}
442
443/**
444 * acpi_pcc_probe - Parse the ACPI tree for the PCCT.
445 *
446 * Return: 0 for Success, else errno.
447 */
448static int __init acpi_pcc_probe(void)
449{
450 struct acpi_table_header *pcct_tbl;
451 struct acpi_subtable_header *pcct_entry;
452 struct acpi_table_pcct *acpi_pcct_tbl;
453 int count, i, rc;
454 int sum = 0;
455 acpi_status status = AE_OK;
456
457 /* Search for PCCT */
458 status = acpi_get_table(ACPI_SIG_PCCT, 0, &pcct_tbl);
459
460 if (ACPI_FAILURE(status) || !pcct_tbl) {
461 pr_warn("PCCT header not found.\n");
462 return -ENODEV;
463 }
464
465 count = acpi_table_parse_entries(ACPI_SIG_PCCT,
466 sizeof(struct acpi_table_pcct),
467 ACPI_PCCT_TYPE_HW_REDUCED_SUBSPACE,
468 parse_pcc_subspace, MAX_PCC_SUBSPACES);
469 sum += (count > 0) ? count : 0;
470
471 count = acpi_table_parse_entries(ACPI_SIG_PCCT,
472 sizeof(struct acpi_table_pcct),
473 ACPI_PCCT_TYPE_HW_REDUCED_SUBSPACE_TYPE2,
474 parse_pcc_subspace, MAX_PCC_SUBSPACES);
475 sum += (count > 0) ? count : 0;
476
477 if (sum == 0 || sum >= MAX_PCC_SUBSPACES) {
478 pr_err("Error parsing PCC subspaces from PCCT\n");
479 return -EINVAL;
480 }
481
482 pcc_mbox_channels = kzalloc(sizeof(struct mbox_chan) *
483 sum, GFP_KERNEL);
484 if (!pcc_mbox_channels) {
485 pr_err("Could not allocate space for PCC mbox channels\n");
486 return -ENOMEM;
487 }
488
489 pcc_doorbell_vaddr = kcalloc(sum, sizeof(void *), GFP_KERNEL);
490 if (!pcc_doorbell_vaddr) {
491 rc = -ENOMEM;
492 goto err_free_mbox;
493 }
494
495 pcc_doorbell_ack_vaddr = kcalloc(sum, sizeof(void *), GFP_KERNEL);
496 if (!pcc_doorbell_ack_vaddr) {
497 rc = -ENOMEM;
498 goto err_free_db_vaddr;
499 }
500
501 pcc_doorbell_irq = kcalloc(sum, sizeof(int), GFP_KERNEL);
502 if (!pcc_doorbell_irq) {
503 rc = -ENOMEM;
504 goto err_free_db_ack_vaddr;
505 }
506
507 /* Point to the first PCC subspace entry */
508 pcct_entry = (struct acpi_subtable_header *) (
509 (unsigned long) pcct_tbl + sizeof(struct acpi_table_pcct));
510
511 acpi_pcct_tbl = (struct acpi_table_pcct *) pcct_tbl;
512 if (acpi_pcct_tbl->flags & ACPI_PCCT_DOORBELL)
513 pcc_mbox_ctrl.txdone_irq = true;
514
515 for (i = 0; i < sum; i++) {
516 struct acpi_generic_address *db_reg;
517 struct acpi_pcct_hw_reduced *pcct_ss;
518 pcc_mbox_channels[i].con_priv = pcct_entry;
519
520 pcct_ss = (struct acpi_pcct_hw_reduced *) pcct_entry;
521
522 if (pcc_mbox_ctrl.txdone_irq) {
523 rc = pcc_parse_subspace_irq(i, pcct_ss);
524 if (rc < 0)
525 goto err;
526 }
527
528 /* If doorbell is in system memory cache the virt address */
529 db_reg = &pcct_ss->doorbell_register;
530 if (db_reg->space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY)
531 pcc_doorbell_vaddr[i] = acpi_os_ioremap(db_reg->address,
532 db_reg->bit_width/8);
533 pcct_entry = (struct acpi_subtable_header *)
534 ((unsigned long) pcct_entry + pcct_entry->length);
535 }
536
537 pcc_mbox_ctrl.num_chans = sum;
538
539 pr_info("Detected %d PCC Subspaces\n", pcc_mbox_ctrl.num_chans);
540
541 return 0;
542
543err:
544 kfree(pcc_doorbell_irq);
545err_free_db_ack_vaddr:
546 kfree(pcc_doorbell_ack_vaddr);
547err_free_db_vaddr:
548 kfree(pcc_doorbell_vaddr);
549err_free_mbox:
550 kfree(pcc_mbox_channels);
551 return rc;
552}
553
554/**
555 * pcc_mbox_probe - Called when we find a match for the
556 * PCCT platform device. This is purely used to represent
557 * the PCCT as a virtual device for registering with the
558 * generic Mailbox framework.
559 *
560 * @pdev: Pointer to platform device returned when a match
561 * is found.
562 *
563 * Return: 0 for Success, else errno.
564 */
565static int pcc_mbox_probe(struct platform_device *pdev)
566{
567 int ret = 0;
568
569 pcc_mbox_ctrl.chans = pcc_mbox_channels;
570 pcc_mbox_ctrl.ops = &pcc_chan_ops;
571 pcc_mbox_ctrl.dev = &pdev->dev;
572
573 pr_info("Registering PCC driver as Mailbox controller\n");
574 ret = mbox_controller_register(&pcc_mbox_ctrl);
575
576 if (ret) {
577 pr_err("Err registering PCC as Mailbox controller: %d\n", ret);
578 ret = -ENODEV;
579 }
580
581 return ret;
582}
583
584struct platform_driver pcc_mbox_driver = {
585 .probe = pcc_mbox_probe,
586 .driver = {
587 .name = "PCCT",
588 .owner = THIS_MODULE,
589 },
590};
591
592static int __init pcc_init(void)
593{
594 int ret;
595 struct platform_device *pcc_pdev;
596
597 if (acpi_disabled)
598 return -ENODEV;
599
600 /* Check if PCC support is available. */
601 ret = acpi_pcc_probe();
602
603 if (ret) {
604 pr_debug("ACPI PCC probe failed.\n");
605 return -ENODEV;
606 }
607
608 pcc_pdev = platform_create_bundle(&pcc_mbox_driver,
609 pcc_mbox_probe, NULL, 0, NULL, 0);
610
611 if (IS_ERR(pcc_pdev)) {
612 pr_debug("Err creating PCC platform bundle\n");
613 return PTR_ERR(pcc_pdev);
614 }
615
616 return 0;
617}
618
619/*
620 * Make PCC init postcore so that users of this mailbox
621 * such as the ACPI Processor driver have it available
622 * at their init.
623 */
624postcore_initcall(pcc_init);