irq-gic-v3-its.c 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905
  1. /*
  2. * Copyright (C) 2013, 2014 ARM Limited, All Rights Reserved.
  3. * Author: Marc Zyngier <marc.zyngier@arm.com>
  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 version 2 as
  7. * published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. */
  17. #include <linux/acpi.h>
  18. #include <linux/acpi_iort.h>
  19. #include <linux/bitmap.h>
  20. #include <linux/cpu.h>
  21. #include <linux/delay.h>
  22. #include <linux/dma-iommu.h>
  23. #include <linux/interrupt.h>
  24. #include <linux/irqdomain.h>
  25. #include <linux/log2.h>
  26. #include <linux/mm.h>
  27. #include <linux/msi.h>
  28. #include <linux/of.h>
  29. #include <linux/of_address.h>
  30. #include <linux/of_irq.h>
  31. #include <linux/of_pci.h>
  32. #include <linux/of_platform.h>
  33. #include <linux/percpu.h>
  34. #include <linux/slab.h>
  35. #include <linux/irqchip.h>
  36. #include <linux/irqchip/arm-gic-v3.h>
  37. #include <asm/cputype.h>
  38. #include <asm/exception.h>
  39. #include "irq-gic-common.h"
  40. #define ITS_FLAGS_CMDQ_NEEDS_FLUSHING (1ULL << 0)
  41. #define ITS_FLAGS_WORKAROUND_CAVIUM_22375 (1ULL << 1)
  42. #define ITS_FLAGS_WORKAROUND_CAVIUM_23144 (1ULL << 2)
  43. #define RDIST_FLAGS_PROPBASE_NEEDS_FLUSHING (1 << 0)
  44. /*
  45. * Collection structure - just an ID, and a redistributor address to
  46. * ping. We use one per CPU as a bag of interrupts assigned to this
  47. * CPU.
  48. */
  49. struct its_collection {
  50. u64 target_address;
  51. u16 col_id;
  52. };
  53. /*
  54. * The ITS_BASER structure - contains memory information, cached
  55. * value of BASER register configuration and ITS page size.
  56. */
  57. struct its_baser {
  58. void *base;
  59. u64 val;
  60. u32 order;
  61. u32 psz;
  62. };
  63. /*
  64. * The ITS structure - contains most of the infrastructure, with the
  65. * top-level MSI domain, the command queue, the collections, and the
  66. * list of devices writing to it.
  67. */
  68. struct its_node {
  69. raw_spinlock_t lock;
  70. struct list_head entry;
  71. void __iomem *base;
  72. phys_addr_t phys_base;
  73. struct its_cmd_block *cmd_base;
  74. struct its_cmd_block *cmd_write;
  75. struct its_baser tables[GITS_BASER_NR_REGS];
  76. struct its_collection *collections;
  77. struct list_head its_device_list;
  78. u64 flags;
  79. u32 ite_size;
  80. u32 device_ids;
  81. int numa_node;
  82. };
  83. #define ITS_ITT_ALIGN SZ_256
  84. /* Convert page order to size in bytes */
  85. #define PAGE_ORDER_TO_SIZE(o) (PAGE_SIZE << (o))
  86. struct event_lpi_map {
  87. unsigned long *lpi_map;
  88. u16 *col_map;
  89. irq_hw_number_t lpi_base;
  90. int nr_lpis;
  91. };
  92. /*
  93. * The ITS view of a device - belongs to an ITS, a collection, owns an
  94. * interrupt translation table, and a list of interrupts.
  95. */
  96. struct its_device {
  97. struct list_head entry;
  98. struct its_node *its;
  99. struct event_lpi_map event_map;
  100. void *itt;
  101. u32 nr_ites;
  102. u32 device_id;
  103. };
  104. static LIST_HEAD(its_nodes);
  105. static DEFINE_SPINLOCK(its_lock);
  106. static struct rdists *gic_rdists;
  107. static struct irq_domain *its_parent;
  108. #define gic_data_rdist() (raw_cpu_ptr(gic_rdists->rdist))
  109. #define gic_data_rdist_rd_base() (gic_data_rdist()->rd_base)
  110. static struct its_collection *dev_event_to_col(struct its_device *its_dev,
  111. u32 event)
  112. {
  113. struct its_node *its = its_dev->its;
  114. return its->collections + its_dev->event_map.col_map[event];
  115. }
  116. /*
  117. * ITS command descriptors - parameters to be encoded in a command
  118. * block.
  119. */
  120. struct its_cmd_desc {
  121. union {
  122. struct {
  123. struct its_device *dev;
  124. u32 event_id;
  125. } its_inv_cmd;
  126. struct {
  127. struct its_device *dev;
  128. u32 event_id;
  129. } its_int_cmd;
  130. struct {
  131. struct its_device *dev;
  132. int valid;
  133. } its_mapd_cmd;
  134. struct {
  135. struct its_collection *col;
  136. int valid;
  137. } its_mapc_cmd;
  138. struct {
  139. struct its_device *dev;
  140. u32 phys_id;
  141. u32 event_id;
  142. } its_mapti_cmd;
  143. struct {
  144. struct its_device *dev;
  145. struct its_collection *col;
  146. u32 event_id;
  147. } its_movi_cmd;
  148. struct {
  149. struct its_device *dev;
  150. u32 event_id;
  151. } its_discard_cmd;
  152. struct {
  153. struct its_collection *col;
  154. } its_invall_cmd;
  155. };
  156. };
  157. /*
  158. * The ITS command block, which is what the ITS actually parses.
  159. */
  160. struct its_cmd_block {
  161. u64 raw_cmd[4];
  162. };
  163. #define ITS_CMD_QUEUE_SZ SZ_64K
  164. #define ITS_CMD_QUEUE_NR_ENTRIES (ITS_CMD_QUEUE_SZ / sizeof(struct its_cmd_block))
  165. typedef struct its_collection *(*its_cmd_builder_t)(struct its_cmd_block *,
  166. struct its_cmd_desc *);
  167. static void its_mask_encode(u64 *raw_cmd, u64 val, int h, int l)
  168. {
  169. u64 mask = GENMASK_ULL(h, l);
  170. *raw_cmd &= ~mask;
  171. *raw_cmd |= (val << l) & mask;
  172. }
  173. static void its_encode_cmd(struct its_cmd_block *cmd, u8 cmd_nr)
  174. {
  175. its_mask_encode(&cmd->raw_cmd[0], cmd_nr, 7, 0);
  176. }
  177. static void its_encode_devid(struct its_cmd_block *cmd, u32 devid)
  178. {
  179. its_mask_encode(&cmd->raw_cmd[0], devid, 63, 32);
  180. }
  181. static void its_encode_event_id(struct its_cmd_block *cmd, u32 id)
  182. {
  183. its_mask_encode(&cmd->raw_cmd[1], id, 31, 0);
  184. }
  185. static void its_encode_phys_id(struct its_cmd_block *cmd, u32 phys_id)
  186. {
  187. its_mask_encode(&cmd->raw_cmd[1], phys_id, 63, 32);
  188. }
  189. static void its_encode_size(struct its_cmd_block *cmd, u8 size)
  190. {
  191. its_mask_encode(&cmd->raw_cmd[1], size, 4, 0);
  192. }
  193. static void its_encode_itt(struct its_cmd_block *cmd, u64 itt_addr)
  194. {
  195. its_mask_encode(&cmd->raw_cmd[2], itt_addr >> 8, 50, 8);
  196. }
  197. static void its_encode_valid(struct its_cmd_block *cmd, int valid)
  198. {
  199. its_mask_encode(&cmd->raw_cmd[2], !!valid, 63, 63);
  200. }
  201. static void its_encode_target(struct its_cmd_block *cmd, u64 target_addr)
  202. {
  203. its_mask_encode(&cmd->raw_cmd[2], target_addr >> 16, 50, 16);
  204. }
  205. static void its_encode_collection(struct its_cmd_block *cmd, u16 col)
  206. {
  207. its_mask_encode(&cmd->raw_cmd[2], col, 15, 0);
  208. }
  209. static inline void its_fixup_cmd(struct its_cmd_block *cmd)
  210. {
  211. /* Let's fixup BE commands */
  212. cmd->raw_cmd[0] = cpu_to_le64(cmd->raw_cmd[0]);
  213. cmd->raw_cmd[1] = cpu_to_le64(cmd->raw_cmd[1]);
  214. cmd->raw_cmd[2] = cpu_to_le64(cmd->raw_cmd[2]);
  215. cmd->raw_cmd[3] = cpu_to_le64(cmd->raw_cmd[3]);
  216. }
  217. static struct its_collection *its_build_mapd_cmd(struct its_cmd_block *cmd,
  218. struct its_cmd_desc *desc)
  219. {
  220. unsigned long itt_addr;
  221. u8 size = ilog2(desc->its_mapd_cmd.dev->nr_ites);
  222. itt_addr = virt_to_phys(desc->its_mapd_cmd.dev->itt);
  223. itt_addr = ALIGN(itt_addr, ITS_ITT_ALIGN);
  224. its_encode_cmd(cmd, GITS_CMD_MAPD);
  225. its_encode_devid(cmd, desc->its_mapd_cmd.dev->device_id);
  226. its_encode_size(cmd, size - 1);
  227. its_encode_itt(cmd, itt_addr);
  228. its_encode_valid(cmd, desc->its_mapd_cmd.valid);
  229. its_fixup_cmd(cmd);
  230. return NULL;
  231. }
  232. static struct its_collection *its_build_mapc_cmd(struct its_cmd_block *cmd,
  233. struct its_cmd_desc *desc)
  234. {
  235. its_encode_cmd(cmd, GITS_CMD_MAPC);
  236. its_encode_collection(cmd, desc->its_mapc_cmd.col->col_id);
  237. its_encode_target(cmd, desc->its_mapc_cmd.col->target_address);
  238. its_encode_valid(cmd, desc->its_mapc_cmd.valid);
  239. its_fixup_cmd(cmd);
  240. return desc->its_mapc_cmd.col;
  241. }
  242. static struct its_collection *its_build_mapti_cmd(struct its_cmd_block *cmd,
  243. struct its_cmd_desc *desc)
  244. {
  245. struct its_collection *col;
  246. col = dev_event_to_col(desc->its_mapti_cmd.dev,
  247. desc->its_mapti_cmd.event_id);
  248. its_encode_cmd(cmd, GITS_CMD_MAPTI);
  249. its_encode_devid(cmd, desc->its_mapti_cmd.dev->device_id);
  250. its_encode_event_id(cmd, desc->its_mapti_cmd.event_id);
  251. its_encode_phys_id(cmd, desc->its_mapti_cmd.phys_id);
  252. its_encode_collection(cmd, col->col_id);
  253. its_fixup_cmd(cmd);
  254. return col;
  255. }
  256. static struct its_collection *its_build_movi_cmd(struct its_cmd_block *cmd,
  257. struct its_cmd_desc *desc)
  258. {
  259. struct its_collection *col;
  260. col = dev_event_to_col(desc->its_movi_cmd.dev,
  261. desc->its_movi_cmd.event_id);
  262. its_encode_cmd(cmd, GITS_CMD_MOVI);
  263. its_encode_devid(cmd, desc->its_movi_cmd.dev->device_id);
  264. its_encode_event_id(cmd, desc->its_movi_cmd.event_id);
  265. its_encode_collection(cmd, desc->its_movi_cmd.col->col_id);
  266. its_fixup_cmd(cmd);
  267. return col;
  268. }
  269. static struct its_collection *its_build_discard_cmd(struct its_cmd_block *cmd,
  270. struct its_cmd_desc *desc)
  271. {
  272. struct its_collection *col;
  273. col = dev_event_to_col(desc->its_discard_cmd.dev,
  274. desc->its_discard_cmd.event_id);
  275. its_encode_cmd(cmd, GITS_CMD_DISCARD);
  276. its_encode_devid(cmd, desc->its_discard_cmd.dev->device_id);
  277. its_encode_event_id(cmd, desc->its_discard_cmd.event_id);
  278. its_fixup_cmd(cmd);
  279. return col;
  280. }
  281. static struct its_collection *its_build_inv_cmd(struct its_cmd_block *cmd,
  282. struct its_cmd_desc *desc)
  283. {
  284. struct its_collection *col;
  285. col = dev_event_to_col(desc->its_inv_cmd.dev,
  286. desc->its_inv_cmd.event_id);
  287. its_encode_cmd(cmd, GITS_CMD_INV);
  288. its_encode_devid(cmd, desc->its_inv_cmd.dev->device_id);
  289. its_encode_event_id(cmd, desc->its_inv_cmd.event_id);
  290. its_fixup_cmd(cmd);
  291. return col;
  292. }
  293. static struct its_collection *its_build_invall_cmd(struct its_cmd_block *cmd,
  294. struct its_cmd_desc *desc)
  295. {
  296. its_encode_cmd(cmd, GITS_CMD_INVALL);
  297. its_encode_collection(cmd, desc->its_mapc_cmd.col->col_id);
  298. its_fixup_cmd(cmd);
  299. return NULL;
  300. }
  301. static u64 its_cmd_ptr_to_offset(struct its_node *its,
  302. struct its_cmd_block *ptr)
  303. {
  304. return (ptr - its->cmd_base) * sizeof(*ptr);
  305. }
  306. static int its_queue_full(struct its_node *its)
  307. {
  308. int widx;
  309. int ridx;
  310. widx = its->cmd_write - its->cmd_base;
  311. ridx = readl_relaxed(its->base + GITS_CREADR) / sizeof(struct its_cmd_block);
  312. /* This is incredibly unlikely to happen, unless the ITS locks up. */
  313. if (((widx + 1) % ITS_CMD_QUEUE_NR_ENTRIES) == ridx)
  314. return 1;
  315. return 0;
  316. }
  317. static struct its_cmd_block *its_allocate_entry(struct its_node *its)
  318. {
  319. struct its_cmd_block *cmd;
  320. u32 count = 1000000; /* 1s! */
  321. while (its_queue_full(its)) {
  322. count--;
  323. if (!count) {
  324. pr_err_ratelimited("ITS queue not draining\n");
  325. return NULL;
  326. }
  327. cpu_relax();
  328. udelay(1);
  329. }
  330. cmd = its->cmd_write++;
  331. /* Handle queue wrapping */
  332. if (its->cmd_write == (its->cmd_base + ITS_CMD_QUEUE_NR_ENTRIES))
  333. its->cmd_write = its->cmd_base;
  334. /* Clear command */
  335. cmd->raw_cmd[0] = 0;
  336. cmd->raw_cmd[1] = 0;
  337. cmd->raw_cmd[2] = 0;
  338. cmd->raw_cmd[3] = 0;
  339. return cmd;
  340. }
  341. static struct its_cmd_block *its_post_commands(struct its_node *its)
  342. {
  343. u64 wr = its_cmd_ptr_to_offset(its, its->cmd_write);
  344. writel_relaxed(wr, its->base + GITS_CWRITER);
  345. return its->cmd_write;
  346. }
  347. static void its_flush_cmd(struct its_node *its, struct its_cmd_block *cmd)
  348. {
  349. /*
  350. * Make sure the commands written to memory are observable by
  351. * the ITS.
  352. */
  353. if (its->flags & ITS_FLAGS_CMDQ_NEEDS_FLUSHING)
  354. gic_flush_dcache_to_poc(cmd, sizeof(*cmd));
  355. else
  356. dsb(ishst);
  357. }
  358. static void its_wait_for_range_completion(struct its_node *its,
  359. struct its_cmd_block *from,
  360. struct its_cmd_block *to)
  361. {
  362. u64 rd_idx, from_idx, to_idx;
  363. u32 count = 1000000; /* 1s! */
  364. from_idx = its_cmd_ptr_to_offset(its, from);
  365. to_idx = its_cmd_ptr_to_offset(its, to);
  366. while (1) {
  367. rd_idx = readl_relaxed(its->base + GITS_CREADR);
  368. if (rd_idx >= to_idx || rd_idx < from_idx)
  369. break;
  370. count--;
  371. if (!count) {
  372. pr_err_ratelimited("ITS queue timeout\n");
  373. return;
  374. }
  375. cpu_relax();
  376. udelay(1);
  377. }
  378. }
  379. static void its_send_single_command(struct its_node *its,
  380. its_cmd_builder_t builder,
  381. struct its_cmd_desc *desc)
  382. {
  383. struct its_cmd_block *cmd, *sync_cmd, *next_cmd;
  384. struct its_collection *sync_col;
  385. unsigned long flags;
  386. raw_spin_lock_irqsave(&its->lock, flags);
  387. cmd = its_allocate_entry(its);
  388. if (!cmd) { /* We're soooooo screewed... */
  389. pr_err_ratelimited("ITS can't allocate, dropping command\n");
  390. raw_spin_unlock_irqrestore(&its->lock, flags);
  391. return;
  392. }
  393. sync_col = builder(cmd, desc);
  394. its_flush_cmd(its, cmd);
  395. if (sync_col) {
  396. sync_cmd = its_allocate_entry(its);
  397. if (!sync_cmd) {
  398. pr_err_ratelimited("ITS can't SYNC, skipping\n");
  399. goto post;
  400. }
  401. its_encode_cmd(sync_cmd, GITS_CMD_SYNC);
  402. its_encode_target(sync_cmd, sync_col->target_address);
  403. its_fixup_cmd(sync_cmd);
  404. its_flush_cmd(its, sync_cmd);
  405. }
  406. post:
  407. next_cmd = its_post_commands(its);
  408. raw_spin_unlock_irqrestore(&its->lock, flags);
  409. its_wait_for_range_completion(its, cmd, next_cmd);
  410. }
  411. static void its_send_inv(struct its_device *dev, u32 event_id)
  412. {
  413. struct its_cmd_desc desc;
  414. desc.its_inv_cmd.dev = dev;
  415. desc.its_inv_cmd.event_id = event_id;
  416. its_send_single_command(dev->its, its_build_inv_cmd, &desc);
  417. }
  418. static void its_send_mapd(struct its_device *dev, int valid)
  419. {
  420. struct its_cmd_desc desc;
  421. desc.its_mapd_cmd.dev = dev;
  422. desc.its_mapd_cmd.valid = !!valid;
  423. its_send_single_command(dev->its, its_build_mapd_cmd, &desc);
  424. }
  425. static void its_send_mapc(struct its_node *its, struct its_collection *col,
  426. int valid)
  427. {
  428. struct its_cmd_desc desc;
  429. desc.its_mapc_cmd.col = col;
  430. desc.its_mapc_cmd.valid = !!valid;
  431. its_send_single_command(its, its_build_mapc_cmd, &desc);
  432. }
  433. static void its_send_mapti(struct its_device *dev, u32 irq_id, u32 id)
  434. {
  435. struct its_cmd_desc desc;
  436. desc.its_mapti_cmd.dev = dev;
  437. desc.its_mapti_cmd.phys_id = irq_id;
  438. desc.its_mapti_cmd.event_id = id;
  439. its_send_single_command(dev->its, its_build_mapti_cmd, &desc);
  440. }
  441. static void its_send_movi(struct its_device *dev,
  442. struct its_collection *col, u32 id)
  443. {
  444. struct its_cmd_desc desc;
  445. desc.its_movi_cmd.dev = dev;
  446. desc.its_movi_cmd.col = col;
  447. desc.its_movi_cmd.event_id = id;
  448. its_send_single_command(dev->its, its_build_movi_cmd, &desc);
  449. }
  450. static void its_send_discard(struct its_device *dev, u32 id)
  451. {
  452. struct its_cmd_desc desc;
  453. desc.its_discard_cmd.dev = dev;
  454. desc.its_discard_cmd.event_id = id;
  455. its_send_single_command(dev->its, its_build_discard_cmd, &desc);
  456. }
  457. static void its_send_invall(struct its_node *its, struct its_collection *col)
  458. {
  459. struct its_cmd_desc desc;
  460. desc.its_invall_cmd.col = col;
  461. its_send_single_command(its, its_build_invall_cmd, &desc);
  462. }
  463. /*
  464. * irqchip functions - assumes MSI, mostly.
  465. */
  466. static inline u32 its_get_event_id(struct irq_data *d)
  467. {
  468. struct its_device *its_dev = irq_data_get_irq_chip_data(d);
  469. return d->hwirq - its_dev->event_map.lpi_base;
  470. }
  471. static void lpi_set_config(struct irq_data *d, bool enable)
  472. {
  473. struct its_device *its_dev = irq_data_get_irq_chip_data(d);
  474. irq_hw_number_t hwirq = d->hwirq;
  475. u32 id = its_get_event_id(d);
  476. u8 *cfg = page_address(gic_rdists->prop_page) + hwirq - 8192;
  477. if (enable)
  478. *cfg |= LPI_PROP_ENABLED;
  479. else
  480. *cfg &= ~LPI_PROP_ENABLED;
  481. /*
  482. * Make the above write visible to the redistributors.
  483. * And yes, we're flushing exactly: One. Single. Byte.
  484. * Humpf...
  485. */
  486. if (gic_rdists->flags & RDIST_FLAGS_PROPBASE_NEEDS_FLUSHING)
  487. gic_flush_dcache_to_poc(cfg, sizeof(*cfg));
  488. else
  489. dsb(ishst);
  490. its_send_inv(its_dev, id);
  491. }
  492. static void its_mask_irq(struct irq_data *d)
  493. {
  494. lpi_set_config(d, false);
  495. }
  496. static void its_unmask_irq(struct irq_data *d)
  497. {
  498. lpi_set_config(d, true);
  499. }
  500. static int its_set_affinity(struct irq_data *d, const struct cpumask *mask_val,
  501. bool force)
  502. {
  503. unsigned int cpu;
  504. const struct cpumask *cpu_mask = cpu_online_mask;
  505. struct its_device *its_dev = irq_data_get_irq_chip_data(d);
  506. struct its_collection *target_col;
  507. u32 id = its_get_event_id(d);
  508. /* lpi cannot be routed to a redistributor that is on a foreign node */
  509. if (its_dev->its->flags & ITS_FLAGS_WORKAROUND_CAVIUM_23144) {
  510. if (its_dev->its->numa_node >= 0) {
  511. cpu_mask = cpumask_of_node(its_dev->its->numa_node);
  512. if (!cpumask_intersects(mask_val, cpu_mask))
  513. return -EINVAL;
  514. }
  515. }
  516. cpu = cpumask_any_and(mask_val, cpu_mask);
  517. if (cpu >= nr_cpu_ids)
  518. return -EINVAL;
  519. target_col = &its_dev->its->collections[cpu];
  520. its_send_movi(its_dev, target_col, id);
  521. its_dev->event_map.col_map[id] = cpu;
  522. return IRQ_SET_MASK_OK_DONE;
  523. }
  524. static void its_irq_compose_msi_msg(struct irq_data *d, struct msi_msg *msg)
  525. {
  526. struct its_device *its_dev = irq_data_get_irq_chip_data(d);
  527. struct its_node *its;
  528. u64 addr;
  529. its = its_dev->its;
  530. addr = its->phys_base + GITS_TRANSLATER;
  531. msg->address_lo = lower_32_bits(addr);
  532. msg->address_hi = upper_32_bits(addr);
  533. msg->data = its_get_event_id(d);
  534. iommu_dma_map_msi_msg(d->irq, msg);
  535. }
  536. static struct irq_chip its_irq_chip = {
  537. .name = "ITS",
  538. .irq_mask = its_mask_irq,
  539. .irq_unmask = its_unmask_irq,
  540. .irq_eoi = irq_chip_eoi_parent,
  541. .irq_set_affinity = its_set_affinity,
  542. .irq_compose_msi_msg = its_irq_compose_msi_msg,
  543. };
  544. /*
  545. * How we allocate LPIs:
  546. *
  547. * The GIC has id_bits bits for interrupt identifiers. From there, we
  548. * must subtract 8192 which are reserved for SGIs/PPIs/SPIs. Then, as
  549. * we allocate LPIs by chunks of 32, we can shift the whole thing by 5
  550. * bits to the right.
  551. *
  552. * This gives us (((1UL << id_bits) - 8192) >> 5) possible allocations.
  553. */
  554. #define IRQS_PER_CHUNK_SHIFT 5
  555. #define IRQS_PER_CHUNK (1 << IRQS_PER_CHUNK_SHIFT)
  556. static unsigned long *lpi_bitmap;
  557. static u32 lpi_chunks;
  558. static DEFINE_SPINLOCK(lpi_lock);
  559. static int its_lpi_to_chunk(int lpi)
  560. {
  561. return (lpi - 8192) >> IRQS_PER_CHUNK_SHIFT;
  562. }
  563. static int its_chunk_to_lpi(int chunk)
  564. {
  565. return (chunk << IRQS_PER_CHUNK_SHIFT) + 8192;
  566. }
  567. static int __init its_lpi_init(u32 id_bits)
  568. {
  569. lpi_chunks = its_lpi_to_chunk(1UL << id_bits);
  570. lpi_bitmap = kzalloc(BITS_TO_LONGS(lpi_chunks) * sizeof(long),
  571. GFP_KERNEL);
  572. if (!lpi_bitmap) {
  573. lpi_chunks = 0;
  574. return -ENOMEM;
  575. }
  576. pr_info("ITS: Allocated %d chunks for LPIs\n", (int)lpi_chunks);
  577. return 0;
  578. }
  579. static unsigned long *its_lpi_alloc_chunks(int nr_irqs, int *base, int *nr_ids)
  580. {
  581. unsigned long *bitmap = NULL;
  582. int chunk_id;
  583. int nr_chunks;
  584. int i;
  585. nr_chunks = DIV_ROUND_UP(nr_irqs, IRQS_PER_CHUNK);
  586. spin_lock(&lpi_lock);
  587. do {
  588. chunk_id = bitmap_find_next_zero_area(lpi_bitmap, lpi_chunks,
  589. 0, nr_chunks, 0);
  590. if (chunk_id < lpi_chunks)
  591. break;
  592. nr_chunks--;
  593. } while (nr_chunks > 0);
  594. if (!nr_chunks)
  595. goto out;
  596. bitmap = kzalloc(BITS_TO_LONGS(nr_chunks * IRQS_PER_CHUNK) * sizeof (long),
  597. GFP_ATOMIC);
  598. if (!bitmap)
  599. goto out;
  600. for (i = 0; i < nr_chunks; i++)
  601. set_bit(chunk_id + i, lpi_bitmap);
  602. *base = its_chunk_to_lpi(chunk_id);
  603. *nr_ids = nr_chunks * IRQS_PER_CHUNK;
  604. out:
  605. spin_unlock(&lpi_lock);
  606. if (!bitmap)
  607. *base = *nr_ids = 0;
  608. return bitmap;
  609. }
  610. static void its_lpi_free(struct event_lpi_map *map)
  611. {
  612. int base = map->lpi_base;
  613. int nr_ids = map->nr_lpis;
  614. int lpi;
  615. spin_lock(&lpi_lock);
  616. for (lpi = base; lpi < (base + nr_ids); lpi += IRQS_PER_CHUNK) {
  617. int chunk = its_lpi_to_chunk(lpi);
  618. BUG_ON(chunk > lpi_chunks);
  619. if (test_bit(chunk, lpi_bitmap)) {
  620. clear_bit(chunk, lpi_bitmap);
  621. } else {
  622. pr_err("Bad LPI chunk %d\n", chunk);
  623. }
  624. }
  625. spin_unlock(&lpi_lock);
  626. kfree(map->lpi_map);
  627. kfree(map->col_map);
  628. }
  629. /*
  630. * We allocate 64kB for PROPBASE. That gives us at most 64K LPIs to
  631. * deal with (one configuration byte per interrupt). PENDBASE has to
  632. * be 64kB aligned (one bit per LPI, plus 8192 bits for SPI/PPI/SGI).
  633. */
  634. #define LPI_PROPBASE_SZ SZ_64K
  635. #define LPI_PENDBASE_SZ (LPI_PROPBASE_SZ / 8 + SZ_1K)
  636. /*
  637. * This is how many bits of ID we need, including the useless ones.
  638. */
  639. #define LPI_NRBITS ilog2(LPI_PROPBASE_SZ + SZ_8K)
  640. #define LPI_PROP_DEFAULT_PRIO 0xa0
  641. static int __init its_alloc_lpi_tables(void)
  642. {
  643. phys_addr_t paddr;
  644. gic_rdists->prop_page = alloc_pages(GFP_NOWAIT,
  645. get_order(LPI_PROPBASE_SZ));
  646. if (!gic_rdists->prop_page) {
  647. pr_err("Failed to allocate PROPBASE\n");
  648. return -ENOMEM;
  649. }
  650. paddr = page_to_phys(gic_rdists->prop_page);
  651. pr_info("GIC: using LPI property table @%pa\n", &paddr);
  652. /* Priority 0xa0, Group-1, disabled */
  653. memset(page_address(gic_rdists->prop_page),
  654. LPI_PROP_DEFAULT_PRIO | LPI_PROP_GROUP1,
  655. LPI_PROPBASE_SZ);
  656. /* Make sure the GIC will observe the written configuration */
  657. gic_flush_dcache_to_poc(page_address(gic_rdists->prop_page), LPI_PROPBASE_SZ);
  658. return 0;
  659. }
  660. static const char *its_base_type_string[] = {
  661. [GITS_BASER_TYPE_DEVICE] = "Devices",
  662. [GITS_BASER_TYPE_VCPU] = "Virtual CPUs",
  663. [GITS_BASER_TYPE_RESERVED3] = "Reserved (3)",
  664. [GITS_BASER_TYPE_COLLECTION] = "Interrupt Collections",
  665. [GITS_BASER_TYPE_RESERVED5] = "Reserved (5)",
  666. [GITS_BASER_TYPE_RESERVED6] = "Reserved (6)",
  667. [GITS_BASER_TYPE_RESERVED7] = "Reserved (7)",
  668. };
  669. static u64 its_read_baser(struct its_node *its, struct its_baser *baser)
  670. {
  671. u32 idx = baser - its->tables;
  672. return gits_read_baser(its->base + GITS_BASER + (idx << 3));
  673. }
  674. static void its_write_baser(struct its_node *its, struct its_baser *baser,
  675. u64 val)
  676. {
  677. u32 idx = baser - its->tables;
  678. gits_write_baser(val, its->base + GITS_BASER + (idx << 3));
  679. baser->val = its_read_baser(its, baser);
  680. }
  681. static int its_setup_baser(struct its_node *its, struct its_baser *baser,
  682. u64 cache, u64 shr, u32 psz, u32 order,
  683. bool indirect)
  684. {
  685. u64 val = its_read_baser(its, baser);
  686. u64 esz = GITS_BASER_ENTRY_SIZE(val);
  687. u64 type = GITS_BASER_TYPE(val);
  688. u32 alloc_pages;
  689. void *base;
  690. u64 tmp;
  691. retry_alloc_baser:
  692. alloc_pages = (PAGE_ORDER_TO_SIZE(order) / psz);
  693. if (alloc_pages > GITS_BASER_PAGES_MAX) {
  694. pr_warn("ITS@%pa: %s too large, reduce ITS pages %u->%u\n",
  695. &its->phys_base, its_base_type_string[type],
  696. alloc_pages, GITS_BASER_PAGES_MAX);
  697. alloc_pages = GITS_BASER_PAGES_MAX;
  698. order = get_order(GITS_BASER_PAGES_MAX * psz);
  699. }
  700. base = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO, order);
  701. if (!base)
  702. return -ENOMEM;
  703. retry_baser:
  704. val = (virt_to_phys(base) |
  705. (type << GITS_BASER_TYPE_SHIFT) |
  706. ((esz - 1) << GITS_BASER_ENTRY_SIZE_SHIFT) |
  707. ((alloc_pages - 1) << GITS_BASER_PAGES_SHIFT) |
  708. cache |
  709. shr |
  710. GITS_BASER_VALID);
  711. val |= indirect ? GITS_BASER_INDIRECT : 0x0;
  712. switch (psz) {
  713. case SZ_4K:
  714. val |= GITS_BASER_PAGE_SIZE_4K;
  715. break;
  716. case SZ_16K:
  717. val |= GITS_BASER_PAGE_SIZE_16K;
  718. break;
  719. case SZ_64K:
  720. val |= GITS_BASER_PAGE_SIZE_64K;
  721. break;
  722. }
  723. its_write_baser(its, baser, val);
  724. tmp = baser->val;
  725. if ((val ^ tmp) & GITS_BASER_SHAREABILITY_MASK) {
  726. /*
  727. * Shareability didn't stick. Just use
  728. * whatever the read reported, which is likely
  729. * to be the only thing this redistributor
  730. * supports. If that's zero, make it
  731. * non-cacheable as well.
  732. */
  733. shr = tmp & GITS_BASER_SHAREABILITY_MASK;
  734. if (!shr) {
  735. cache = GITS_BASER_nC;
  736. gic_flush_dcache_to_poc(base, PAGE_ORDER_TO_SIZE(order));
  737. }
  738. goto retry_baser;
  739. }
  740. if ((val ^ tmp) & GITS_BASER_PAGE_SIZE_MASK) {
  741. /*
  742. * Page size didn't stick. Let's try a smaller
  743. * size and retry. If we reach 4K, then
  744. * something is horribly wrong...
  745. */
  746. free_pages((unsigned long)base, order);
  747. baser->base = NULL;
  748. switch (psz) {
  749. case SZ_16K:
  750. psz = SZ_4K;
  751. goto retry_alloc_baser;
  752. case SZ_64K:
  753. psz = SZ_16K;
  754. goto retry_alloc_baser;
  755. }
  756. }
  757. if (val != tmp) {
  758. pr_err("ITS@%pa: %s doesn't stick: %llx %llx\n",
  759. &its->phys_base, its_base_type_string[type],
  760. val, tmp);
  761. free_pages((unsigned long)base, order);
  762. return -ENXIO;
  763. }
  764. baser->order = order;
  765. baser->base = base;
  766. baser->psz = psz;
  767. tmp = indirect ? GITS_LVL1_ENTRY_SIZE : esz;
  768. pr_info("ITS@%pa: allocated %d %s @%lx (%s, esz %d, psz %dK, shr %d)\n",
  769. &its->phys_base, (int)(PAGE_ORDER_TO_SIZE(order) / (int)tmp),
  770. its_base_type_string[type],
  771. (unsigned long)virt_to_phys(base),
  772. indirect ? "indirect" : "flat", (int)esz,
  773. psz / SZ_1K, (int)shr >> GITS_BASER_SHAREABILITY_SHIFT);
  774. return 0;
  775. }
  776. static bool its_parse_baser_device(struct its_node *its, struct its_baser *baser,
  777. u32 psz, u32 *order)
  778. {
  779. u64 esz = GITS_BASER_ENTRY_SIZE(its_read_baser(its, baser));
  780. u64 val = GITS_BASER_InnerShareable | GITS_BASER_RaWaWb;
  781. u32 ids = its->device_ids;
  782. u32 new_order = *order;
  783. bool indirect = false;
  784. /* No need to enable Indirection if memory requirement < (psz*2)bytes */
  785. if ((esz << ids) > (psz * 2)) {
  786. /*
  787. * Find out whether hw supports a single or two-level table by
  788. * table by reading bit at offset '62' after writing '1' to it.
  789. */
  790. its_write_baser(its, baser, val | GITS_BASER_INDIRECT);
  791. indirect = !!(baser->val & GITS_BASER_INDIRECT);
  792. if (indirect) {
  793. /*
  794. * The size of the lvl2 table is equal to ITS page size
  795. * which is 'psz'. For computing lvl1 table size,
  796. * subtract ID bits that sparse lvl2 table from 'ids'
  797. * which is reported by ITS hardware times lvl1 table
  798. * entry size.
  799. */
  800. ids -= ilog2(psz / (int)esz);
  801. esz = GITS_LVL1_ENTRY_SIZE;
  802. }
  803. }
  804. /*
  805. * Allocate as many entries as required to fit the
  806. * range of device IDs that the ITS can grok... The ID
  807. * space being incredibly sparse, this results in a
  808. * massive waste of memory if two-level device table
  809. * feature is not supported by hardware.
  810. */
  811. new_order = max_t(u32, get_order(esz << ids), new_order);
  812. if (new_order >= MAX_ORDER) {
  813. new_order = MAX_ORDER - 1;
  814. ids = ilog2(PAGE_ORDER_TO_SIZE(new_order) / (int)esz);
  815. pr_warn("ITS@%pa: Device Table too large, reduce ids %u->%u\n",
  816. &its->phys_base, its->device_ids, ids);
  817. }
  818. *order = new_order;
  819. return indirect;
  820. }
  821. static void its_free_tables(struct its_node *its)
  822. {
  823. int i;
  824. for (i = 0; i < GITS_BASER_NR_REGS; i++) {
  825. if (its->tables[i].base) {
  826. free_pages((unsigned long)its->tables[i].base,
  827. its->tables[i].order);
  828. its->tables[i].base = NULL;
  829. }
  830. }
  831. }
  832. static int its_alloc_tables(struct its_node *its)
  833. {
  834. u64 typer = gic_read_typer(its->base + GITS_TYPER);
  835. u32 ids = GITS_TYPER_DEVBITS(typer);
  836. u64 shr = GITS_BASER_InnerShareable;
  837. u64 cache = GITS_BASER_RaWaWb;
  838. u32 psz = SZ_64K;
  839. int err, i;
  840. if (its->flags & ITS_FLAGS_WORKAROUND_CAVIUM_22375) {
  841. /*
  842. * erratum 22375: only alloc 8MB table size
  843. * erratum 24313: ignore memory access type
  844. */
  845. cache = GITS_BASER_nCnB;
  846. ids = 0x14; /* 20 bits, 8MB */
  847. }
  848. its->device_ids = ids;
  849. for (i = 0; i < GITS_BASER_NR_REGS; i++) {
  850. struct its_baser *baser = its->tables + i;
  851. u64 val = its_read_baser(its, baser);
  852. u64 type = GITS_BASER_TYPE(val);
  853. u32 order = get_order(psz);
  854. bool indirect = false;
  855. if (type == GITS_BASER_TYPE_NONE)
  856. continue;
  857. if (type == GITS_BASER_TYPE_DEVICE)
  858. indirect = its_parse_baser_device(its, baser, psz, &order);
  859. err = its_setup_baser(its, baser, cache, shr, psz, order, indirect);
  860. if (err < 0) {
  861. its_free_tables(its);
  862. return err;
  863. }
  864. /* Update settings which will be used for next BASERn */
  865. psz = baser->psz;
  866. cache = baser->val & GITS_BASER_CACHEABILITY_MASK;
  867. shr = baser->val & GITS_BASER_SHAREABILITY_MASK;
  868. }
  869. return 0;
  870. }
  871. static int its_alloc_collections(struct its_node *its)
  872. {
  873. its->collections = kzalloc(nr_cpu_ids * sizeof(*its->collections),
  874. GFP_KERNEL);
  875. if (!its->collections)
  876. return -ENOMEM;
  877. return 0;
  878. }
  879. static void its_cpu_init_lpis(void)
  880. {
  881. void __iomem *rbase = gic_data_rdist_rd_base();
  882. struct page *pend_page;
  883. u64 val, tmp;
  884. /* If we didn't allocate the pending table yet, do it now */
  885. pend_page = gic_data_rdist()->pend_page;
  886. if (!pend_page) {
  887. phys_addr_t paddr;
  888. /*
  889. * The pending pages have to be at least 64kB aligned,
  890. * hence the 'max(LPI_PENDBASE_SZ, SZ_64K)' below.
  891. */
  892. pend_page = alloc_pages(GFP_NOWAIT | __GFP_ZERO,
  893. get_order(max(LPI_PENDBASE_SZ, SZ_64K)));
  894. if (!pend_page) {
  895. pr_err("Failed to allocate PENDBASE for CPU%d\n",
  896. smp_processor_id());
  897. return;
  898. }
  899. /* Make sure the GIC will observe the zero-ed page */
  900. gic_flush_dcache_to_poc(page_address(pend_page), LPI_PENDBASE_SZ);
  901. paddr = page_to_phys(pend_page);
  902. pr_info("CPU%d: using LPI pending table @%pa\n",
  903. smp_processor_id(), &paddr);
  904. gic_data_rdist()->pend_page = pend_page;
  905. }
  906. /* Disable LPIs */
  907. val = readl_relaxed(rbase + GICR_CTLR);
  908. val &= ~GICR_CTLR_ENABLE_LPIS;
  909. writel_relaxed(val, rbase + GICR_CTLR);
  910. /*
  911. * Make sure any change to the table is observable by the GIC.
  912. */
  913. dsb(sy);
  914. /* set PROPBASE */
  915. val = (page_to_phys(gic_rdists->prop_page) |
  916. GICR_PROPBASER_InnerShareable |
  917. GICR_PROPBASER_RaWaWb |
  918. ((LPI_NRBITS - 1) & GICR_PROPBASER_IDBITS_MASK));
  919. gicr_write_propbaser(val, rbase + GICR_PROPBASER);
  920. tmp = gicr_read_propbaser(rbase + GICR_PROPBASER);
  921. if ((tmp ^ val) & GICR_PROPBASER_SHAREABILITY_MASK) {
  922. if (!(tmp & GICR_PROPBASER_SHAREABILITY_MASK)) {
  923. /*
  924. * The HW reports non-shareable, we must
  925. * remove the cacheability attributes as
  926. * well.
  927. */
  928. val &= ~(GICR_PROPBASER_SHAREABILITY_MASK |
  929. GICR_PROPBASER_CACHEABILITY_MASK);
  930. val |= GICR_PROPBASER_nC;
  931. gicr_write_propbaser(val, rbase + GICR_PROPBASER);
  932. }
  933. pr_info_once("GIC: using cache flushing for LPI property table\n");
  934. gic_rdists->flags |= RDIST_FLAGS_PROPBASE_NEEDS_FLUSHING;
  935. }
  936. /* set PENDBASE */
  937. val = (page_to_phys(pend_page) |
  938. GICR_PENDBASER_InnerShareable |
  939. GICR_PENDBASER_RaWaWb);
  940. gicr_write_pendbaser(val, rbase + GICR_PENDBASER);
  941. tmp = gicr_read_pendbaser(rbase + GICR_PENDBASER);
  942. if (!(tmp & GICR_PENDBASER_SHAREABILITY_MASK)) {
  943. /*
  944. * The HW reports non-shareable, we must remove the
  945. * cacheability attributes as well.
  946. */
  947. val &= ~(GICR_PENDBASER_SHAREABILITY_MASK |
  948. GICR_PENDBASER_CACHEABILITY_MASK);
  949. val |= GICR_PENDBASER_nC;
  950. gicr_write_pendbaser(val, rbase + GICR_PENDBASER);
  951. }
  952. /* Enable LPIs */
  953. val = readl_relaxed(rbase + GICR_CTLR);
  954. val |= GICR_CTLR_ENABLE_LPIS;
  955. writel_relaxed(val, rbase + GICR_CTLR);
  956. /* Make sure the GIC has seen the above */
  957. dsb(sy);
  958. }
  959. static void its_cpu_init_collection(void)
  960. {
  961. struct its_node *its;
  962. int cpu;
  963. spin_lock(&its_lock);
  964. cpu = smp_processor_id();
  965. list_for_each_entry(its, &its_nodes, entry) {
  966. u64 target;
  967. /* avoid cross node collections and its mapping */
  968. if (its->flags & ITS_FLAGS_WORKAROUND_CAVIUM_23144) {
  969. struct device_node *cpu_node;
  970. cpu_node = of_get_cpu_node(cpu, NULL);
  971. if (its->numa_node != NUMA_NO_NODE &&
  972. its->numa_node != of_node_to_nid(cpu_node))
  973. continue;
  974. }
  975. /*
  976. * We now have to bind each collection to its target
  977. * redistributor.
  978. */
  979. if (gic_read_typer(its->base + GITS_TYPER) & GITS_TYPER_PTA) {
  980. /*
  981. * This ITS wants the physical address of the
  982. * redistributor.
  983. */
  984. target = gic_data_rdist()->phys_base;
  985. } else {
  986. /*
  987. * This ITS wants a linear CPU number.
  988. */
  989. target = gic_read_typer(gic_data_rdist_rd_base() + GICR_TYPER);
  990. target = GICR_TYPER_CPU_NUMBER(target) << 16;
  991. }
  992. /* Perform collection mapping */
  993. its->collections[cpu].target_address = target;
  994. its->collections[cpu].col_id = cpu;
  995. its_send_mapc(its, &its->collections[cpu], 1);
  996. its_send_invall(its, &its->collections[cpu]);
  997. }
  998. spin_unlock(&its_lock);
  999. }
  1000. static struct its_device *its_find_device(struct its_node *its, u32 dev_id)
  1001. {
  1002. struct its_device *its_dev = NULL, *tmp;
  1003. unsigned long flags;
  1004. raw_spin_lock_irqsave(&its->lock, flags);
  1005. list_for_each_entry(tmp, &its->its_device_list, entry) {
  1006. if (tmp->device_id == dev_id) {
  1007. its_dev = tmp;
  1008. break;
  1009. }
  1010. }
  1011. raw_spin_unlock_irqrestore(&its->lock, flags);
  1012. return its_dev;
  1013. }
  1014. static struct its_baser *its_get_baser(struct its_node *its, u32 type)
  1015. {
  1016. int i;
  1017. for (i = 0; i < GITS_BASER_NR_REGS; i++) {
  1018. if (GITS_BASER_TYPE(its->tables[i].val) == type)
  1019. return &its->tables[i];
  1020. }
  1021. return NULL;
  1022. }
  1023. static bool its_alloc_device_table(struct its_node *its, u32 dev_id)
  1024. {
  1025. struct its_baser *baser;
  1026. struct page *page;
  1027. u32 esz, idx;
  1028. __le64 *table;
  1029. baser = its_get_baser(its, GITS_BASER_TYPE_DEVICE);
  1030. /* Don't allow device id that exceeds ITS hardware limit */
  1031. if (!baser)
  1032. return (ilog2(dev_id) < its->device_ids);
  1033. /* Don't allow device id that exceeds single, flat table limit */
  1034. esz = GITS_BASER_ENTRY_SIZE(baser->val);
  1035. if (!(baser->val & GITS_BASER_INDIRECT))
  1036. return (dev_id < (PAGE_ORDER_TO_SIZE(baser->order) / esz));
  1037. /* Compute 1st level table index & check if that exceeds table limit */
  1038. idx = dev_id >> ilog2(baser->psz / esz);
  1039. if (idx >= (PAGE_ORDER_TO_SIZE(baser->order) / GITS_LVL1_ENTRY_SIZE))
  1040. return false;
  1041. table = baser->base;
  1042. /* Allocate memory for 2nd level table */
  1043. if (!table[idx]) {
  1044. page = alloc_pages(GFP_KERNEL | __GFP_ZERO, get_order(baser->psz));
  1045. if (!page)
  1046. return false;
  1047. /* Flush Lvl2 table to PoC if hw doesn't support coherency */
  1048. if (!(baser->val & GITS_BASER_SHAREABILITY_MASK))
  1049. gic_flush_dcache_to_poc(page_address(page), baser->psz);
  1050. table[idx] = cpu_to_le64(page_to_phys(page) | GITS_BASER_VALID);
  1051. /* Flush Lvl1 entry to PoC if hw doesn't support coherency */
  1052. if (!(baser->val & GITS_BASER_SHAREABILITY_MASK))
  1053. gic_flush_dcache_to_poc(table + idx, GITS_LVL1_ENTRY_SIZE);
  1054. /* Ensure updated table contents are visible to ITS hardware */
  1055. dsb(sy);
  1056. }
  1057. return true;
  1058. }
  1059. static struct its_device *its_create_device(struct its_node *its, u32 dev_id,
  1060. int nvecs)
  1061. {
  1062. struct its_device *dev;
  1063. unsigned long *lpi_map;
  1064. unsigned long flags;
  1065. u16 *col_map = NULL;
  1066. void *itt;
  1067. int lpi_base;
  1068. int nr_lpis;
  1069. int nr_ites;
  1070. int sz;
  1071. if (!its_alloc_device_table(its, dev_id))
  1072. return NULL;
  1073. dev = kzalloc(sizeof(*dev), GFP_KERNEL);
  1074. /*
  1075. * At least one bit of EventID is being used, hence a minimum
  1076. * of two entries. No, the architecture doesn't let you
  1077. * express an ITT with a single entry.
  1078. */
  1079. nr_ites = max(2UL, roundup_pow_of_two(nvecs));
  1080. sz = nr_ites * its->ite_size;
  1081. sz = max(sz, ITS_ITT_ALIGN) + ITS_ITT_ALIGN - 1;
  1082. itt = kzalloc(sz, GFP_KERNEL);
  1083. lpi_map = its_lpi_alloc_chunks(nvecs, &lpi_base, &nr_lpis);
  1084. if (lpi_map)
  1085. col_map = kzalloc(sizeof(*col_map) * nr_lpis, GFP_KERNEL);
  1086. if (!dev || !itt || !lpi_map || !col_map) {
  1087. kfree(dev);
  1088. kfree(itt);
  1089. kfree(lpi_map);
  1090. kfree(col_map);
  1091. return NULL;
  1092. }
  1093. gic_flush_dcache_to_poc(itt, sz);
  1094. dev->its = its;
  1095. dev->itt = itt;
  1096. dev->nr_ites = nr_ites;
  1097. dev->event_map.lpi_map = lpi_map;
  1098. dev->event_map.col_map = col_map;
  1099. dev->event_map.lpi_base = lpi_base;
  1100. dev->event_map.nr_lpis = nr_lpis;
  1101. dev->device_id = dev_id;
  1102. INIT_LIST_HEAD(&dev->entry);
  1103. raw_spin_lock_irqsave(&its->lock, flags);
  1104. list_add(&dev->entry, &its->its_device_list);
  1105. raw_spin_unlock_irqrestore(&its->lock, flags);
  1106. /* Map device to its ITT */
  1107. its_send_mapd(dev, 1);
  1108. return dev;
  1109. }
  1110. static void its_free_device(struct its_device *its_dev)
  1111. {
  1112. unsigned long flags;
  1113. raw_spin_lock_irqsave(&its_dev->its->lock, flags);
  1114. list_del(&its_dev->entry);
  1115. raw_spin_unlock_irqrestore(&its_dev->its->lock, flags);
  1116. kfree(its_dev->itt);
  1117. kfree(its_dev);
  1118. }
  1119. static int its_alloc_device_irq(struct its_device *dev, irq_hw_number_t *hwirq)
  1120. {
  1121. int idx;
  1122. idx = find_first_zero_bit(dev->event_map.lpi_map,
  1123. dev->event_map.nr_lpis);
  1124. if (idx == dev->event_map.nr_lpis)
  1125. return -ENOSPC;
  1126. *hwirq = dev->event_map.lpi_base + idx;
  1127. set_bit(idx, dev->event_map.lpi_map);
  1128. return 0;
  1129. }
  1130. static int its_msi_prepare(struct irq_domain *domain, struct device *dev,
  1131. int nvec, msi_alloc_info_t *info)
  1132. {
  1133. struct its_node *its;
  1134. struct its_device *its_dev;
  1135. struct msi_domain_info *msi_info;
  1136. u32 dev_id;
  1137. /*
  1138. * We ignore "dev" entierely, and rely on the dev_id that has
  1139. * been passed via the scratchpad. This limits this domain's
  1140. * usefulness to upper layers that definitely know that they
  1141. * are built on top of the ITS.
  1142. */
  1143. dev_id = info->scratchpad[0].ul;
  1144. msi_info = msi_get_domain_info(domain);
  1145. its = msi_info->data;
  1146. its_dev = its_find_device(its, dev_id);
  1147. if (its_dev) {
  1148. /*
  1149. * We already have seen this ID, probably through
  1150. * another alias (PCI bridge of some sort). No need to
  1151. * create the device.
  1152. */
  1153. pr_debug("Reusing ITT for devID %x\n", dev_id);
  1154. goto out;
  1155. }
  1156. its_dev = its_create_device(its, dev_id, nvec);
  1157. if (!its_dev)
  1158. return -ENOMEM;
  1159. pr_debug("ITT %d entries, %d bits\n", nvec, ilog2(nvec));
  1160. out:
  1161. info->scratchpad[0].ptr = its_dev;
  1162. return 0;
  1163. }
  1164. static struct msi_domain_ops its_msi_domain_ops = {
  1165. .msi_prepare = its_msi_prepare,
  1166. };
  1167. static int its_irq_gic_domain_alloc(struct irq_domain *domain,
  1168. unsigned int virq,
  1169. irq_hw_number_t hwirq)
  1170. {
  1171. struct irq_fwspec fwspec;
  1172. if (irq_domain_get_of_node(domain->parent)) {
  1173. fwspec.fwnode = domain->parent->fwnode;
  1174. fwspec.param_count = 3;
  1175. fwspec.param[0] = GIC_IRQ_TYPE_LPI;
  1176. fwspec.param[1] = hwirq;
  1177. fwspec.param[2] = IRQ_TYPE_EDGE_RISING;
  1178. } else if (is_fwnode_irqchip(domain->parent->fwnode)) {
  1179. fwspec.fwnode = domain->parent->fwnode;
  1180. fwspec.param_count = 2;
  1181. fwspec.param[0] = hwirq;
  1182. fwspec.param[1] = IRQ_TYPE_EDGE_RISING;
  1183. } else {
  1184. return -EINVAL;
  1185. }
  1186. return irq_domain_alloc_irqs_parent(domain, virq, 1, &fwspec);
  1187. }
  1188. static int its_irq_domain_alloc(struct irq_domain *domain, unsigned int virq,
  1189. unsigned int nr_irqs, void *args)
  1190. {
  1191. msi_alloc_info_t *info = args;
  1192. struct its_device *its_dev = info->scratchpad[0].ptr;
  1193. irq_hw_number_t hwirq;
  1194. int err;
  1195. int i;
  1196. for (i = 0; i < nr_irqs; i++) {
  1197. err = its_alloc_device_irq(its_dev, &hwirq);
  1198. if (err)
  1199. return err;
  1200. err = its_irq_gic_domain_alloc(domain, virq + i, hwirq);
  1201. if (err)
  1202. return err;
  1203. irq_domain_set_hwirq_and_chip(domain, virq + i,
  1204. hwirq, &its_irq_chip, its_dev);
  1205. pr_debug("ID:%d pID:%d vID:%d\n",
  1206. (int)(hwirq - its_dev->event_map.lpi_base),
  1207. (int) hwirq, virq + i);
  1208. }
  1209. return 0;
  1210. }
  1211. static void its_irq_domain_activate(struct irq_domain *domain,
  1212. struct irq_data *d)
  1213. {
  1214. struct its_device *its_dev = irq_data_get_irq_chip_data(d);
  1215. u32 event = its_get_event_id(d);
  1216. const struct cpumask *cpu_mask = cpu_online_mask;
  1217. /* get the cpu_mask of local node */
  1218. if (its_dev->its->numa_node >= 0)
  1219. cpu_mask = cpumask_of_node(its_dev->its->numa_node);
  1220. /* Bind the LPI to the first possible CPU */
  1221. its_dev->event_map.col_map[event] = cpumask_first(cpu_mask);
  1222. /* Map the GIC IRQ and event to the device */
  1223. its_send_mapti(its_dev, d->hwirq, event);
  1224. }
  1225. static void its_irq_domain_deactivate(struct irq_domain *domain,
  1226. struct irq_data *d)
  1227. {
  1228. struct its_device *its_dev = irq_data_get_irq_chip_data(d);
  1229. u32 event = its_get_event_id(d);
  1230. /* Stop the delivery of interrupts */
  1231. its_send_discard(its_dev, event);
  1232. }
  1233. static void its_irq_domain_free(struct irq_domain *domain, unsigned int virq,
  1234. unsigned int nr_irqs)
  1235. {
  1236. struct irq_data *d = irq_domain_get_irq_data(domain, virq);
  1237. struct its_device *its_dev = irq_data_get_irq_chip_data(d);
  1238. int i;
  1239. for (i = 0; i < nr_irqs; i++) {
  1240. struct irq_data *data = irq_domain_get_irq_data(domain,
  1241. virq + i);
  1242. u32 event = its_get_event_id(data);
  1243. /* Mark interrupt index as unused */
  1244. clear_bit(event, its_dev->event_map.lpi_map);
  1245. /* Nuke the entry in the domain */
  1246. irq_domain_reset_irq_data(data);
  1247. }
  1248. /* If all interrupts have been freed, start mopping the floor */
  1249. if (bitmap_empty(its_dev->event_map.lpi_map,
  1250. its_dev->event_map.nr_lpis)) {
  1251. its_lpi_free(&its_dev->event_map);
  1252. /* Unmap device/itt */
  1253. its_send_mapd(its_dev, 0);
  1254. its_free_device(its_dev);
  1255. }
  1256. irq_domain_free_irqs_parent(domain, virq, nr_irqs);
  1257. }
  1258. static const struct irq_domain_ops its_domain_ops = {
  1259. .alloc = its_irq_domain_alloc,
  1260. .free = its_irq_domain_free,
  1261. .activate = its_irq_domain_activate,
  1262. .deactivate = its_irq_domain_deactivate,
  1263. };
  1264. static int its_force_quiescent(void __iomem *base)
  1265. {
  1266. u32 count = 1000000; /* 1s */
  1267. u32 val;
  1268. val = readl_relaxed(base + GITS_CTLR);
  1269. /*
  1270. * GIC architecture specification requires the ITS to be both
  1271. * disabled and quiescent for writes to GITS_BASER<n> or
  1272. * GITS_CBASER to not have UNPREDICTABLE results.
  1273. */
  1274. if ((val & GITS_CTLR_QUIESCENT) && !(val & GITS_CTLR_ENABLE))
  1275. return 0;
  1276. /* Disable the generation of all interrupts to this ITS */
  1277. val &= ~GITS_CTLR_ENABLE;
  1278. writel_relaxed(val, base + GITS_CTLR);
  1279. /* Poll GITS_CTLR and wait until ITS becomes quiescent */
  1280. while (1) {
  1281. val = readl_relaxed(base + GITS_CTLR);
  1282. if (val & GITS_CTLR_QUIESCENT)
  1283. return 0;
  1284. count--;
  1285. if (!count)
  1286. return -EBUSY;
  1287. cpu_relax();
  1288. udelay(1);
  1289. }
  1290. }
  1291. static void __maybe_unused its_enable_quirk_cavium_22375(void *data)
  1292. {
  1293. struct its_node *its = data;
  1294. its->flags |= ITS_FLAGS_WORKAROUND_CAVIUM_22375;
  1295. }
  1296. static void __maybe_unused its_enable_quirk_cavium_23144(void *data)
  1297. {
  1298. struct its_node *its = data;
  1299. its->flags |= ITS_FLAGS_WORKAROUND_CAVIUM_23144;
  1300. }
  1301. static void __maybe_unused its_enable_quirk_qdf2400_e0065(void *data)
  1302. {
  1303. struct its_node *its = data;
  1304. /* On QDF2400, the size of the ITE is 16Bytes */
  1305. its->ite_size = 16;
  1306. }
  1307. static const struct gic_quirk its_quirks[] = {
  1308. #ifdef CONFIG_CAVIUM_ERRATUM_22375
  1309. {
  1310. .desc = "ITS: Cavium errata 22375, 24313",
  1311. .iidr = 0xa100034c, /* ThunderX pass 1.x */
  1312. .mask = 0xffff0fff,
  1313. .init = its_enable_quirk_cavium_22375,
  1314. },
  1315. #endif
  1316. #ifdef CONFIG_CAVIUM_ERRATUM_23144
  1317. {
  1318. .desc = "ITS: Cavium erratum 23144",
  1319. .iidr = 0xa100034c, /* ThunderX pass 1.x */
  1320. .mask = 0xffff0fff,
  1321. .init = its_enable_quirk_cavium_23144,
  1322. },
  1323. #endif
  1324. #ifdef CONFIG_QCOM_QDF2400_ERRATUM_0065
  1325. {
  1326. .desc = "ITS: QDF2400 erratum 0065",
  1327. .iidr = 0x00001070, /* QDF2400 ITS rev 1.x */
  1328. .mask = 0xffffffff,
  1329. .init = its_enable_quirk_qdf2400_e0065,
  1330. },
  1331. #endif
  1332. {
  1333. }
  1334. };
  1335. static void its_enable_quirks(struct its_node *its)
  1336. {
  1337. u32 iidr = readl_relaxed(its->base + GITS_IIDR);
  1338. gic_enable_quirks(iidr, its_quirks, its);
  1339. }
  1340. static int its_init_domain(struct fwnode_handle *handle, struct its_node *its)
  1341. {
  1342. struct irq_domain *inner_domain;
  1343. struct msi_domain_info *info;
  1344. info = kzalloc(sizeof(*info), GFP_KERNEL);
  1345. if (!info)
  1346. return -ENOMEM;
  1347. inner_domain = irq_domain_create_tree(handle, &its_domain_ops, its);
  1348. if (!inner_domain) {
  1349. kfree(info);
  1350. return -ENOMEM;
  1351. }
  1352. inner_domain->parent = its_parent;
  1353. inner_domain->bus_token = DOMAIN_BUS_NEXUS;
  1354. inner_domain->flags |= IRQ_DOMAIN_FLAG_MSI_REMAP;
  1355. info->ops = &its_msi_domain_ops;
  1356. info->data = its;
  1357. inner_domain->host_data = info;
  1358. return 0;
  1359. }
  1360. static int __init its_probe_one(struct resource *res,
  1361. struct fwnode_handle *handle, int numa_node)
  1362. {
  1363. struct its_node *its;
  1364. void __iomem *its_base;
  1365. u32 val;
  1366. u64 baser, tmp;
  1367. int err;
  1368. its_base = ioremap(res->start, resource_size(res));
  1369. if (!its_base) {
  1370. pr_warn("ITS@%pa: Unable to map ITS registers\n", &res->start);
  1371. return -ENOMEM;
  1372. }
  1373. val = readl_relaxed(its_base + GITS_PIDR2) & GIC_PIDR2_ARCH_MASK;
  1374. if (val != 0x30 && val != 0x40) {
  1375. pr_warn("ITS@%pa: No ITS detected, giving up\n", &res->start);
  1376. err = -ENODEV;
  1377. goto out_unmap;
  1378. }
  1379. err = its_force_quiescent(its_base);
  1380. if (err) {
  1381. pr_warn("ITS@%pa: Failed to quiesce, giving up\n", &res->start);
  1382. goto out_unmap;
  1383. }
  1384. pr_info("ITS %pR\n", res);
  1385. its = kzalloc(sizeof(*its), GFP_KERNEL);
  1386. if (!its) {
  1387. err = -ENOMEM;
  1388. goto out_unmap;
  1389. }
  1390. raw_spin_lock_init(&its->lock);
  1391. INIT_LIST_HEAD(&its->entry);
  1392. INIT_LIST_HEAD(&its->its_device_list);
  1393. its->base = its_base;
  1394. its->phys_base = res->start;
  1395. its->ite_size = ((gic_read_typer(its_base + GITS_TYPER) >> 4) & 0xf) + 1;
  1396. its->numa_node = numa_node;
  1397. its->cmd_base = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
  1398. get_order(ITS_CMD_QUEUE_SZ));
  1399. if (!its->cmd_base) {
  1400. err = -ENOMEM;
  1401. goto out_free_its;
  1402. }
  1403. its->cmd_write = its->cmd_base;
  1404. its_enable_quirks(its);
  1405. err = its_alloc_tables(its);
  1406. if (err)
  1407. goto out_free_cmd;
  1408. err = its_alloc_collections(its);
  1409. if (err)
  1410. goto out_free_tables;
  1411. baser = (virt_to_phys(its->cmd_base) |
  1412. GITS_CBASER_RaWaWb |
  1413. GITS_CBASER_InnerShareable |
  1414. (ITS_CMD_QUEUE_SZ / SZ_4K - 1) |
  1415. GITS_CBASER_VALID);
  1416. gits_write_cbaser(baser, its->base + GITS_CBASER);
  1417. tmp = gits_read_cbaser(its->base + GITS_CBASER);
  1418. if ((tmp ^ baser) & GITS_CBASER_SHAREABILITY_MASK) {
  1419. if (!(tmp & GITS_CBASER_SHAREABILITY_MASK)) {
  1420. /*
  1421. * The HW reports non-shareable, we must
  1422. * remove the cacheability attributes as
  1423. * well.
  1424. */
  1425. baser &= ~(GITS_CBASER_SHAREABILITY_MASK |
  1426. GITS_CBASER_CACHEABILITY_MASK);
  1427. baser |= GITS_CBASER_nC;
  1428. gits_write_cbaser(baser, its->base + GITS_CBASER);
  1429. }
  1430. pr_info("ITS: using cache flushing for cmd queue\n");
  1431. its->flags |= ITS_FLAGS_CMDQ_NEEDS_FLUSHING;
  1432. }
  1433. gits_write_cwriter(0, its->base + GITS_CWRITER);
  1434. writel_relaxed(GITS_CTLR_ENABLE, its->base + GITS_CTLR);
  1435. err = its_init_domain(handle, its);
  1436. if (err)
  1437. goto out_free_tables;
  1438. spin_lock(&its_lock);
  1439. list_add(&its->entry, &its_nodes);
  1440. spin_unlock(&its_lock);
  1441. return 0;
  1442. out_free_tables:
  1443. its_free_tables(its);
  1444. out_free_cmd:
  1445. free_pages((unsigned long)its->cmd_base, get_order(ITS_CMD_QUEUE_SZ));
  1446. out_free_its:
  1447. kfree(its);
  1448. out_unmap:
  1449. iounmap(its_base);
  1450. pr_err("ITS@%pa: failed probing (%d)\n", &res->start, err);
  1451. return err;
  1452. }
  1453. static bool gic_rdists_supports_plpis(void)
  1454. {
  1455. return !!(gic_read_typer(gic_data_rdist_rd_base() + GICR_TYPER) & GICR_TYPER_PLPIS);
  1456. }
  1457. int its_cpu_init(void)
  1458. {
  1459. if (!list_empty(&its_nodes)) {
  1460. if (!gic_rdists_supports_plpis()) {
  1461. pr_info("CPU%d: LPIs not supported\n", smp_processor_id());
  1462. return -ENXIO;
  1463. }
  1464. its_cpu_init_lpis();
  1465. its_cpu_init_collection();
  1466. }
  1467. return 0;
  1468. }
  1469. static struct of_device_id its_device_id[] = {
  1470. { .compatible = "arm,gic-v3-its", },
  1471. {},
  1472. };
  1473. static int __init its_of_probe(struct device_node *node)
  1474. {
  1475. struct device_node *np;
  1476. struct resource res;
  1477. for (np = of_find_matching_node(node, its_device_id); np;
  1478. np = of_find_matching_node(np, its_device_id)) {
  1479. if (!of_property_read_bool(np, "msi-controller")) {
  1480. pr_warn("%s: no msi-controller property, ITS ignored\n",
  1481. np->full_name);
  1482. continue;
  1483. }
  1484. if (of_address_to_resource(np, 0, &res)) {
  1485. pr_warn("%s: no regs?\n", np->full_name);
  1486. continue;
  1487. }
  1488. its_probe_one(&res, &np->fwnode, of_node_to_nid(np));
  1489. }
  1490. return 0;
  1491. }
  1492. #ifdef CONFIG_ACPI
  1493. #define ACPI_GICV3_ITS_MEM_SIZE (SZ_128K)
  1494. static int __init gic_acpi_parse_madt_its(struct acpi_subtable_header *header,
  1495. const unsigned long end)
  1496. {
  1497. struct acpi_madt_generic_translator *its_entry;
  1498. struct fwnode_handle *dom_handle;
  1499. struct resource res;
  1500. int err;
  1501. its_entry = (struct acpi_madt_generic_translator *)header;
  1502. memset(&res, 0, sizeof(res));
  1503. res.start = its_entry->base_address;
  1504. res.end = its_entry->base_address + ACPI_GICV3_ITS_MEM_SIZE - 1;
  1505. res.flags = IORESOURCE_MEM;
  1506. dom_handle = irq_domain_alloc_fwnode((void *)its_entry->base_address);
  1507. if (!dom_handle) {
  1508. pr_err("ITS@%pa: Unable to allocate GICv3 ITS domain token\n",
  1509. &res.start);
  1510. return -ENOMEM;
  1511. }
  1512. err = iort_register_domain_token(its_entry->translation_id, dom_handle);
  1513. if (err) {
  1514. pr_err("ITS@%pa: Unable to register GICv3 ITS domain token (ITS ID %d) to IORT\n",
  1515. &res.start, its_entry->translation_id);
  1516. goto dom_err;
  1517. }
  1518. err = its_probe_one(&res, dom_handle, NUMA_NO_NODE);
  1519. if (!err)
  1520. return 0;
  1521. iort_deregister_domain_token(its_entry->translation_id);
  1522. dom_err:
  1523. irq_domain_free_fwnode(dom_handle);
  1524. return err;
  1525. }
  1526. static void __init its_acpi_probe(void)
  1527. {
  1528. acpi_table_parse_madt(ACPI_MADT_TYPE_GENERIC_TRANSLATOR,
  1529. gic_acpi_parse_madt_its, 0);
  1530. }
  1531. #else
  1532. static void __init its_acpi_probe(void) { }
  1533. #endif
  1534. int __init its_init(struct fwnode_handle *handle, struct rdists *rdists,
  1535. struct irq_domain *parent_domain)
  1536. {
  1537. struct device_node *of_node;
  1538. its_parent = parent_domain;
  1539. of_node = to_of_node(handle);
  1540. if (of_node)
  1541. its_of_probe(of_node);
  1542. else
  1543. its_acpi_probe();
  1544. if (list_empty(&its_nodes)) {
  1545. pr_warn("ITS: No ITS available, not enabling LPIs\n");
  1546. return -ENXIO;
  1547. }
  1548. gic_rdists = rdists;
  1549. its_alloc_lpi_tables();
  1550. its_lpi_init(rdists->id_bits);
  1551. return 0;
  1552. }